We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2099274 commit cc13c88Copy full SHA for cc13c88
examples/axes.cu
@@ -185,7 +185,7 @@ void copy_type_and_block_size_sweep(nvbench::state &state,
185
thrust::device_vector<ValueT> inp(nelems, fill_value);
186
thrust::device_vector<ValueT> out(nelems, ValueT{});
187
188
- const uint gridSize = cuda::ceil_div(nelems, BLOCK_DIM);
+ const auto gridSize = cuda::ceil_div(nelems, BLOCK_DIM);
189
190
const ValueT *inp_p = thrust::raw_pointer_cast(inp.data());
191
ValueT *out_p = thrust::raw_pointer_cast(out.data());
0 commit comments