We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Cross-posted:
Can we add const to void** as follows?
const
oroError_t OROAPI oroModuleLaunchKernel(oroFunction_t f, unsigned int gridDimX, unsigned int gridDimY, unsigned int gridDimZ, unsigned int blockDimX, unsigned int blockDimY, unsigned int blockDimZ, unsigned int sharedMemBytes, oroStream_t stream, const void *const * kernelParams, const void *const * extra);
I think this change allows us to input const-qualified parameters to oroModuleLaunchKernel.
oroModuleLaunchKernel
The text was updated successfully, but these errors were encountered:
I'm not sure about this one, but other people suggested adding const to src in oroMemcpy.
src
oroMemcpy
Sorry, something went wrong.
No branches or pull requests
Cross-posted:
Can we add
const
to void** as follows?I think this change allows us to input const-qualified parameters to
oroModuleLaunchKernel
.The text was updated successfully, but these errors were encountered: