Skip to content

Commit c0b7e4e

Browse files
committed
fix formatting bug
1 parent 54bf418 commit c0b7e4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shuffle_kernels/shuffle.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ int main() {
9090
for(int delta = 0; delta < num_threads; ++delta) {
9191
kernel_shfl_up<<<1, num_threads>>>(d_gpu, out_gpu, delta);
9292
hipMemcpy(out_cpu.data(), out_gpu, out_cpu.size() * sizeof(int), hipMemcpyDeviceToHost);
93-
std::cout << "kernel_shfl_up(" << delta << "(: ";
93+
std::cout << "kernel_shfl_up(" << delta << "): ";
9494
for(auto d : out_cpu) {
9595
std::cout << d << ", ";
9696
}

0 commit comments

Comments
 (0)