Commit 8be483c5 authored by Paul's avatar Paul
Browse files

Formatting

parent ec31c597
...@@ -25,7 +25,7 @@ struct hip_vector ...@@ -25,7 +25,7 @@ struct hip_vector
__device__ __host__ hip_vector(std::initializer_list<T> x) __device__ __host__ hip_vector(std::initializer_list<T> x)
{ {
std::copy(x.begin(), x.end(), d); std::copy(x.begin(), x.end(), d);
len = x.size(); len = x.size();
} }
MIGRAPHX_DEVICE_CONSTEXPR T& operator[](std::size_t i) { return d[i]; } MIGRAPHX_DEVICE_CONSTEXPR T& operator[](std::size_t i) { return d[i]; }
......
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