"test/ref/scatternd_max.cpp" did not exist on "fcdb8c2a2059b110b9cfbeeede6bf270aec80e4b"
Commit c4d73c7a authored by Ted Themistokleous's avatar Ted Themistokleous
Browse files

Remove rbegin() from array.hpp

This was added during debugging when attempting to add in partial_sum()
to replicate device behavior when using calculate_strides(). In this case
this isn't needed
parent bd1b90a9
......@@ -149,9 +149,6 @@ struct array
constexpr T* begin() { return d; }
constexpr const T* begin() const { return d; }
constexpr T* rbegin() { return d[N -1]; }
constexpr const T* rbegin() const { return d[N - 1]; }
constexpr T* end() { return d + size(); }
constexpr const T* end() const { return d + size(); }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment