Skip to content

Commit c322c66

Browse files
committed
Fix up the CUDA kernel signatures.
1 parent e4d594c commit c322c66

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

device/cuda/src/finding/kernels/gather_measurement_votes.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace traccc::cuda::kernels {
1313

1414
__global__ void gather_measurement_votes(
15-
const device::gather_measurement_votes_payload& payload) {
15+
device::gather_measurement_votes_payload payload) {
1616

1717
device::gather_measurement_votes(details::global_index1(), payload);
1818
}

device/cuda/src/finding/kernels/gather_measurement_votes.cuh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
namespace traccc::cuda::kernels {
1414

1515
__global__ void gather_measurement_votes(
16-
const device::gather_measurement_votes_payload& payload);
16+
device::gather_measurement_votes_payload payload);
1717

1818
} // namespace traccc::cuda::kernels

device/cuda/src/finding/kernels/update_tip_length_buffer.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace traccc::cuda::kernels {
1313

1414
__global__ void update_tip_length_buffer(
15-
const device::update_tip_length_buffer_payload payload) {
15+
device::update_tip_length_buffer_payload payload) {
1616

1717
device::update_tip_length_buffer(details::global_index1(), payload);
1818
}

device/cuda/src/finding/kernels/update_tip_length_buffer.cuh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
namespace traccc::cuda::kernels {
1414

1515
__global__ void update_tip_length_buffer(
16-
const device::update_tip_length_buffer_payload payload);
16+
device::update_tip_length_buffer_payload payload);
1717

1818
} // namespace traccc::cuda::kernels

0 commit comments

Comments
 (0)