Skip to content

Propagate compile flags #512

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
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
4 changes: 2 additions & 2 deletions dpctl-capi/source/dpctl_sycl_program_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ __dpctl_give DPCTLSyclProgramRef
createOpenCLInterOpProgram(const context &SyclCtx,
__dpctl_keep const void *IL,
size_t length,
const char * /* */)
const char *CompileOpts)
{
cl_int err;
auto CLCtx = SyclCtx.get();
Expand All @@ -93,7 +93,7 @@ createOpenCLInterOpProgram(const context &SyclCtx,

// Build the OpenCL interoperability program
err = clBuildProgram(CLProgram, (cl_uint)(SyclDevices.size()), CLDevices,
nullptr, nullptr, nullptr);
CompileOpts, nullptr, nullptr);
// free the CLDevices array
delete[] CLDevices;

Expand Down