Skip to content

Commit

Permalink
Fix CUDA and HIP kde_cpp extension meson builds
Browse files Browse the repository at this point in the history
meson defaults to a debug build, and this caused a problem where linking would fail with 'ptxas : Optimized debugging not supported'
  • Loading branch information
ndgrigorian committed Jan 6, 2025
1 parent 0ded08f commit 8c9ca71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steps/kernel_density_estimation_cpp/meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('kde_app', 'cpp')
project('kde_app', 'cpp', default_options: ['--buildtype=release'])

sycl_feature_code = '''#include <iostream>
using namespace std;
Expand Down

0 comments on commit 8c9ca71

Please sign in to comment.