Skip to content

Commit b31bbb4

Browse files
committed
Replaced permutation class with permutation function
Vector based permutations (permutation class) are easily modelled with expression based permutations (used to be called vex::eslice()). This commit drops permutation class and renames vex::eslice() to vex::permutation(). See README and tests/vector_view.cpp for examples.
1 parent 7d6f372 commit b31bbb4

File tree

3 files changed

+18
-71
lines changed

3 files changed

+18
-71
lines changed

README.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -315,26 +315,25 @@ a sequence position N.
315315

316316
### <a name="permutations"></a>Permutations
317317

318-
`vex::permutation` allows to use permuted vector in a vector expression. The
319-
class constructor accepts `vex::vector<size_t>` of indices. The following
320-
example assigns reversed vector `X` to `Y`:
318+
`vex::permutation()` function allows to use permuted vector in a vector
319+
expression. The function accepts a vector expression that returns integral
320+
values (indices). The following example assigns reversed vector `X` to `Y`:
321321

322322
~~~{.cpp}
323323
vex::vector<size_t> I(ctx, N);
324324
I = N - 1 - vex::element_index();
325-
326-
vex::permutation reverse(I);
325+
auto reverse = vex::permutation(I)
327326
328327
Y = reverse(X);
329328
~~~
330329

331330
The drawback of the above approach is that you have to store and access an
332331
index vector. Sometimes this is a necessary evil, but in this simple example we
333-
can do better. `vex::eslice()` function returns an expression-based permutation
334-
operator. Here is how we use it:
332+
can do better. In the following example lightweight expression is used to
333+
construct the same permutation:
335334

336335
~~~{.cpp}
337-
auto reverse = vex::eslice( N - 1 - vex::element_index() );
336+
auto reverse = vex::permutation( N - 1 - vex::element_index() );
338337
Y = reverse(X);
339338
~~~
340339

tests/vector_view.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,16 @@ BOOST_AUTO_TEST_CASE(vector_permutation)
117117
{
118118
vex::vector<size_t> I(queue, N);
119119
I = N - 1 - vex::element_index();
120-
vex::permutation reverse(I);
121-
Y = reverse(X);
120+
auto reverse = vex::permutation(I);
122121

122+
Y = reverse(X);
123123
check_sample(Y, [&](size_t idx, double v) { BOOST_CHECK_EQUAL(v, x[N - 1 - idx]); });
124124
}
125125

126126
Y = 0;
127127

128128
{
129-
auto reverse = vex::eslice(N - 1 - vex::element_index());
129+
auto reverse = vex::permutation(N - 1 - vex::element_index());
130130

131131
Y = reverse(X);
132132
check_sample(Y, [&](size_t idx, double v) { BOOST_CHECK_EQUAL(v, x[N - 1 - idx]); });
@@ -192,7 +192,7 @@ BOOST_AUTO_TEST_CASE(assign_to_view) {
192192

193193
I = vex::element_index() * m;
194194

195-
vex::permutation first_col(I);
195+
auto first_col = vex::permutation(I);
196196

197197
first_col(x) = 42;
198198

vexcl/vector_view.hpp

+7-59
Original file line numberDiff line numberDiff line change
@@ -507,64 +507,12 @@ struct slicer {
507507
}
508508
};
509509

510-
/// Permutation operator.
511-
struct permutation {
512-
const vector<size_t> &index;
513-
514-
permutation(const vector<size_t> &index) : index(index) {
515-
assert(index.queue_list().size() == 1);
516-
}
517-
518-
size_t size() const {
519-
return index.size();
520-
}
521-
522-
std::string partial_expression(const std::string &prm_name,
523-
const cl::Device&) const
524-
{
525-
std::ostringstream s;
526-
s << prm_name << "_base[" << prm_name << "_index[idx]]";
527-
528-
return s.str();
529-
}
530-
531-
std::string indexing_function(const std::string &/*prm_name*/,
532-
const cl::Device&) const
533-
{
534-
return "";
535-
}
536-
537-
template <typename T>
538-
std::string parameter_declaration(const std::string &prm_name,
539-
const cl::Device&) const
540-
{
541-
std::ostringstream s;
542-
543-
s << ",\n\tglobal " << type_name<T>() << " * " << prm_name << "_base"
544-
<< ", global " << type_name<size_t>() << " * " << prm_name << "_index";
545-
546-
return s.str();
547-
}
548-
549-
void setArgs(cl::Kernel &kernel, unsigned device, size_t/*index_offset*/,
550-
unsigned &position) const
551-
{
552-
kernel.setArg(position++, index(device));
553-
}
554-
555-
template <typename T>
556-
vector_view<T, permutation> operator()(const vector<T> &base) const {
557-
assert(base.queue_list().size() == 1);
558-
return vector_view<T, permutation>(base, *this);
559-
}
560-
};
561-
562510
/// Expression-based permutation operator.
563511
template <class Expr>
564-
struct expr_slice {
512+
struct expr_permutation {
565513
const Expr expr;
566514

567-
expr_slice(const Expr &expr) : expr(expr) {}
515+
expr_permutation(const Expr &expr) : expr(expr) {}
568516

569517
size_t size() const {
570518
detail::get_expression_properties prop;
@@ -618,9 +566,9 @@ struct expr_slice {
618566
}
619567

620568
template <typename T>
621-
vector_view<T, expr_slice> operator()(const vector<T> &base) const {
569+
vector_view<T, expr_permutation> operator()(const vector<T> &base) const {
622570
assert(base.queue_list().size() == 1);
623-
return vector_view<T, expr_slice>(base, *this);
571+
return vector_view<T, expr_permutation>(base, *this);
624572
}
625573
};
626574

@@ -635,10 +583,10 @@ struct expr_slice {
635583
template <class Expr>
636584
typename std::enable_if<
637585
std::is_integral<typename detail::return_type<Expr>::type>::value,
638-
expr_slice<Expr>
586+
expr_permutation<Expr>
639587
>::type
640-
eslice(const Expr &expr) {
641-
return expr_slice<Expr>(expr);
588+
permutation(const Expr &expr) {
589+
return expr_permutation<Expr>(expr);
642590
}
643591

644592
//---------------------------------------------------------------------------

0 commit comments

Comments
 (0)