Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ __global__ __launch_bounds__(128) void propagate_to_next_surface(
const finding_config cfg,
device::propagate_to_next_surface_payload<propagator_t, bfield_t> payload) {

#if defined(__CUDA_ARCH__) && CUDART_VERSION >= 13000
asm(".pragma \"enable_smem_spilling\";");
#endif

device::propagate_to_next_surface<propagator_t, bfield_t>(
details::global_index1(), cfg, payload);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ namespace kernels {
template <typename fitter_t>
__global__ __launch_bounds__(128) void fit_backward(
const fitting_config cfg, const device::fit_payload<fitter_t> payload) {

#if defined(__CUDA_ARCH__) && CUDART_VERSION >= 13000
asm(".pragma \"enable_smem_spilling\";");
#endif

device::fit_backward<fitter_t>(details::global_index1(), cfg, payload);
}
} // namespace kernels
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ namespace kernels {
template <typename fitter_t>
__global__ __launch_bounds__(128) void fit_forward(
const fitting_config cfg, const device::fit_payload<fitter_t> payload) {

#if defined(__CUDA_ARCH__) && CUDART_VERSION >= 13000
asm(".pragma \"enable_smem_spilling\";");
#endif

device::fit_forward<fitter_t>(details::global_index1(), cfg, payload);
}
} // namespace kernels
Expand Down
Loading