diff --git a/CHANGELOG.md b/CHANGELOG.md index f2a2f99f..ef4d5ccf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,9 +43,12 @@ * `4_CUDA_Libraries` * `jitLto` * `7_libNVVM` + * `cuda-c-linking` * `device-side-launch` * `simple` * `uvmlite` + * `8_Platform_Specific/Tegra` + * `EGLSync_CUDAEvent_Interop` * Updated the sample using CUDA API "cudaGraphAddNode"/"cudaStreamGetCaptureInfo" with adding "cudaGraphEdgeData" pointer parameter as they are updated to "cudaGraphAddNode_v2"/"cudaStreamGetCaptureInfo_v3" by default in CUDA 13.0: * `3_CUDA_Features` * `graphConditionalNodes` diff --git a/Samples/7_libNVVM/cuda-c-linking/cuda-c-linking.cpp b/Samples/7_libNVVM/cuda-c-linking/cuda-c-linking.cpp index 06e8d1ca..27fb73af 100644 --- a/Samples/7_libNVVM/cuda-c-linking/cuda-c-linking.cpp +++ b/Samples/7_libNVVM/cuda-c-linking/cuda-c-linking.cpp @@ -248,7 +248,8 @@ int main(int argc, char **argv) // Create the CUDA context. CUcontext context; - checkCudaErrors(cuCtxCreate(&context, 0, device)); + + checkCudaErrors(cuCtxCreate(&context, NULL, 0, device)); // Create a JIT linker and generate the result CUBIN. CUlinkState linker;