Skip to content

Commit 3e0ccb8

Browse files
committed
Fix gather algorithm
1 parent 4265eb5 commit 3e0ccb8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

include/boost/compute/algorithm/gather.hpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ class gather_kernel : public meta_kernel
3636
OutputIterator result)
3737
{
3838
m_count = iterator_range_size(first, last);
39-
m_offset = first.get_index();
4039

4140
*this <<
4241
"const uint i = get_global_id(0);\n" <<
@@ -50,12 +49,11 @@ class gather_kernel : public meta_kernel
5049
return event();
5150
}
5251

53-
return exec_1d(queue, m_offset, m_count);
52+
return exec_1d(queue, 0, m_count);
5453
}
5554

5655
private:
5756
size_t m_count;
58-
size_t m_offset;
5957
};
6058

6159
} // end detail namespace

test/test_gather.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ BOOST_AUTO_TEST_CASE(gather_int)
3434
indices.begin(), indices.end(), input.begin(), output.begin(), queue
3535
);
3636
CHECK_RANGE_EQUAL(int, 5, output, (1, 5, 2, 4, 3));
37+
38+
compute::gather(
39+
indices.begin() + 1, indices.end(), input.begin(), output.begin(), queue
40+
);
41+
CHECK_RANGE_EQUAL(int, 5, output, (5, 2, 4, 3, 3));
3742
}
3843

3944
BOOST_AUTO_TEST_CASE(copy_index_then_gather)

0 commit comments

Comments
 (0)