diff --git a/Common/helper_multiprocess.cpp b/Common/helper_multiprocess.cpp index 1e2d9255..c7769b50 100644 --- a/Common/helper_multiprocess.cpp +++ b/Common/helper_multiprocess.cpp @@ -185,25 +185,30 @@ int ipcCreateSocket(ipcHandle *&handle, const char *name, return -1; } - unlink(name); + char path_name[50]; + + // Create unique name for the socket with path if SOCK_FOLDER is set. + sprintf(path_name, "%s%u", SOCK_FOLDER, getpid()); + + unlink(path_name); memset(&servaddr, 0, sizeof(servaddr)); servaddr.sun_family = AF_UNIX; - size_t len = strlen(name); + size_t len = strlen(path_name); if (len > (sizeof(servaddr.sun_path) - 1)) { perror("IPC failure: Cannot bind provided name to socket. Name too large"); return -1; } - strncpy(servaddr.sun_path, name, len); + strncpy(servaddr.sun_path, path_name, len); if (bind(server_fd, (struct sockaddr *)&servaddr, SUN_LEN(&servaddr)) < 0) { perror("IPC failure: Binding socket failed"); return -1; } - handle->socketName = new char[strlen(name) + 1]; - strcpy(handle->socketName, name); + handle->socketName = new char[strlen(path_name) + 1]; + strcpy(handle->socketName, path_name); handle->socket = server_fd; return 0; } @@ -219,12 +224,12 @@ int ipcOpenSocket(ipcHandle *&handle) { perror("IPC failure:Socket creation error"); return -1; } - + memset(&cliaddr, 0, sizeof(cliaddr)); cliaddr.sun_family = AF_UNIX; - char temp[20]; + char temp[50]; - // Create unique name for the socket. + // Create unique name for the socket with path if SOCK_FOLDER is set. sprintf(temp, "%s%u", SOCK_FOLDER, getpid()); strcpy(cliaddr.sun_path, temp); diff --git a/Samples/0_Introduction/UnifiedMemoryStreams/.vscode/tasks.json b/Samples/0_Introduction/UnifiedMemoryStreams/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/UnifiedMemoryStreams/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/asyncAPI/.vscode/tasks.json b/Samples/0_Introduction/asyncAPI/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/asyncAPI/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/clock/.vscode/tasks.json b/Samples/0_Introduction/clock/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/clock/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/clock_nvrtc/.vscode/tasks.json b/Samples/0_Introduction/clock_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/clock_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/cudaOpenMP/.vscode/tasks.json b/Samples/0_Introduction/cudaOpenMP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/cudaOpenMP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/fp16ScalarProduct/.vscode/tasks.json b/Samples/0_Introduction/fp16ScalarProduct/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/fp16ScalarProduct/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/matrixMul/.vscode/tasks.json b/Samples/0_Introduction/matrixMul/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/matrixMul/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/matrixMulDrv/.vscode/tasks.json b/Samples/0_Introduction/matrixMulDrv/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/matrixMulDrv/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/matrixMulDynlinkJIT/.vscode/tasks.json b/Samples/0_Introduction/matrixMulDynlinkJIT/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/matrixMulDynlinkJIT/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/matrixMul_nvrtc/.vscode/tasks.json b/Samples/0_Introduction/matrixMul_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/matrixMul_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/mergeSort/.vscode/tasks.json b/Samples/0_Introduction/mergeSort/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/mergeSort/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleAWBarrier/.vscode/tasks.json b/Samples/0_Introduction/simpleAWBarrier/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleAWBarrier/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleAssert/.vscode/tasks.json b/Samples/0_Introduction/simpleAssert/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleAssert/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleAssert_nvrtc/.vscode/tasks.json b/Samples/0_Introduction/simpleAssert_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleAssert_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleAtomicIntrinsics/.vscode/tasks.json b/Samples/0_Introduction/simpleAtomicIntrinsics/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleAtomicIntrinsics/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleAtomicIntrinsics_nvrtc/.vscode/tasks.json b/Samples/0_Introduction/simpleAtomicIntrinsics_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleAtomicIntrinsics_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleAttributes/.vscode/tasks.json b/Samples/0_Introduction/simpleAttributes/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleAttributes/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleCUDA2GL/.vscode/tasks.json b/Samples/0_Introduction/simpleCUDA2GL/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleCUDA2GL/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleCallback/.vscode/tasks.json b/Samples/0_Introduction/simpleCallback/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleCallback/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleCooperativeGroups/.vscode/tasks.json b/Samples/0_Introduction/simpleCooperativeGroups/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleCooperativeGroups/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleCubemapTexture/.vscode/tasks.json b/Samples/0_Introduction/simpleCubemapTexture/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleCubemapTexture/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleDrvRuntime/.vscode/tasks.json b/Samples/0_Introduction/simpleDrvRuntime/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleDrvRuntime/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleHyperQ/.vscode/tasks.json b/Samples/0_Introduction/simpleHyperQ/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleHyperQ/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleIPC/.vscode/tasks.json b/Samples/0_Introduction/simpleIPC/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleIPC/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleLayeredTexture/.vscode/tasks.json b/Samples/0_Introduction/simpleLayeredTexture/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleLayeredTexture/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleMPI/.vscode/tasks.json b/Samples/0_Introduction/simpleMPI/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleMPI/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleMultiCopy/.vscode/tasks.json b/Samples/0_Introduction/simpleMultiCopy/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleMultiCopy/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleMultiGPU/.vscode/tasks.json b/Samples/0_Introduction/simpleMultiGPU/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleMultiGPU/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleOccupancy/.vscode/tasks.json b/Samples/0_Introduction/simpleOccupancy/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleOccupancy/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleP2P/.vscode/tasks.json b/Samples/0_Introduction/simpleP2P/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleP2P/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simplePitchLinearTexture/.vscode/tasks.json b/Samples/0_Introduction/simplePitchLinearTexture/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simplePitchLinearTexture/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simplePrintf/.vscode/tasks.json b/Samples/0_Introduction/simplePrintf/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simplePrintf/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleStreams/.vscode/tasks.json b/Samples/0_Introduction/simpleStreams/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleStreams/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleSurfaceWrite/.vscode/tasks.json b/Samples/0_Introduction/simpleSurfaceWrite/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleSurfaceWrite/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleTemplates/.vscode/tasks.json b/Samples/0_Introduction/simpleTemplates/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleTemplates/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleTexture/.vscode/tasks.json b/Samples/0_Introduction/simpleTexture/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleTexture/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleTexture3D/.vscode/tasks.json b/Samples/0_Introduction/simpleTexture3D/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleTexture3D/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleTextureDrv/.vscode/tasks.json b/Samples/0_Introduction/simpleTextureDrv/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleTextureDrv/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleVoteIntrinsics/.vscode/tasks.json b/Samples/0_Introduction/simpleVoteIntrinsics/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleVoteIntrinsics/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/simpleZeroCopy/.vscode/tasks.json b/Samples/0_Introduction/simpleZeroCopy/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/simpleZeroCopy/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/systemWideAtomics/.vscode/tasks.json b/Samples/0_Introduction/systemWideAtomics/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/systemWideAtomics/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/template/.vscode/tasks.json b/Samples/0_Introduction/template/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/template/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/vectorAdd/.vscode/tasks.json b/Samples/0_Introduction/vectorAdd/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/vectorAdd/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/vectorAddDrv/.vscode/tasks.json b/Samples/0_Introduction/vectorAddDrv/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/vectorAddDrv/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/vectorAddMMAP/.vscode/tasks.json b/Samples/0_Introduction/vectorAddMMAP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/vectorAddMMAP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/0_Introduction/vectorAdd_nvrtc/.vscode/tasks.json b/Samples/0_Introduction/vectorAdd_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/0_Introduction/vectorAdd_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/1_Utilities/deviceQuery/.vscode/tasks.json b/Samples/1_Utilities/deviceQuery/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/1_Utilities/deviceQuery/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/1_Utilities/deviceQueryDrv/.vscode/tasks.json b/Samples/1_Utilities/deviceQueryDrv/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/1_Utilities/deviceQueryDrv/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/1_Utilities/topologyQuery/.vscode/tasks.json b/Samples/1_Utilities/topologyQuery/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/1_Utilities/topologyQuery/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/EGLStream_CUDA_CrossGPU/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/EGLStream_CUDA_CrossGPU/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/EGLStream_CUDA_CrossGPU/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/EGLStream_CUDA_Interop/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/EGLStream_CUDA_Interop/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/EGLStream_CUDA_Interop/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/FunctionPointers/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/FunctionPointers/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/FunctionPointers/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/MC_EstimatePiInlineP/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/MC_EstimatePiInlineP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/MC_EstimatePiInlineP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/MC_EstimatePiInlineQ/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/MC_EstimatePiInlineQ/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/MC_EstimatePiInlineQ/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/MC_EstimatePiP/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/MC_EstimatePiP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/MC_EstimatePiP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/MC_EstimatePiQ/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/MC_EstimatePiQ/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/MC_EstimatePiQ/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/MC_SingleAsianOptionP/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/MC_SingleAsianOptionP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/MC_SingleAsianOptionP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/boxFilter/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/boxFilter/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/boxFilter/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/convolutionSeparable/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/convolutionSeparable/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/convolutionSeparable/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/convolutionTexture/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/convolutionTexture/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/convolutionTexture/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/dct8x8/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/dct8x8/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/dct8x8/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/eigenvalues/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/eigenvalues/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/eigenvalues/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/histogram/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/histogram/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/histogram/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/imageDenoising/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/imageDenoising/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/imageDenoising/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/inlinePTX/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/inlinePTX/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/inlinePTX/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/inlinePTX_nvrtc/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/inlinePTX_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/inlinePTX_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/interval/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/interval/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/interval/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/particles/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/particles/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/particles/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/radixSortThrust/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/radixSortThrust/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/radixSortThrust/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/reduction/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/reduction/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/reduction/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/reductionMultiBlockCG/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/reductionMultiBlockCG/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/reductionMultiBlockCG/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/scalarProd/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/scalarProd/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/scalarProd/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/scan/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/scan/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/scan/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/segmentationTreeThrust/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/segmentationTreeThrust/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/segmentationTreeThrust/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/shfl_scan/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/shfl_scan/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/shfl_scan/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/sortingNetworks/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/sortingNetworks/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/sortingNetworks/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/streamOrderedAllocation/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/streamOrderedAllocation/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/streamOrderedAllocation/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/streamOrderedAllocationIPC/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/streamOrderedAllocationIPC/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/streamOrderedAllocationIPC/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/streamOrderedAllocationP2P/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/streamOrderedAllocationP2P/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/streamOrderedAllocationP2P/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/threadFenceReduction/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/threadFenceReduction/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/threadFenceReduction/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/2_Concepts_and_Techniques/threadMigration/.vscode/tasks.json b/Samples/2_Concepts_and_Techniques/threadMigration/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/2_Concepts_and_Techniques/threadMigration/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/StreamPriorities/.vscode/tasks.json b/Samples/3_CUDA_Features/StreamPriorities/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/StreamPriorities/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/bf16TensorCoreGemm/.vscode/tasks.json b/Samples/3_CUDA_Features/bf16TensorCoreGemm/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/bf16TensorCoreGemm/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/binaryPartitionCG/.vscode/tasks.json b/Samples/3_CUDA_Features/binaryPartitionCG/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/binaryPartitionCG/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/bindlessTexture/.vscode/tasks.json b/Samples/3_CUDA_Features/bindlessTexture/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/bindlessTexture/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/cdpAdvancedQuicksort/.vscode/tasks.json b/Samples/3_CUDA_Features/cdpAdvancedQuicksort/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/cdpAdvancedQuicksort/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/cdpBezierTessellation/.vscode/tasks.json b/Samples/3_CUDA_Features/cdpBezierTessellation/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/cdpBezierTessellation/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/cdpQuadtree/.vscode/tasks.json b/Samples/3_CUDA_Features/cdpQuadtree/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/cdpQuadtree/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/cdpSimplePrint/.vscode/tasks.json b/Samples/3_CUDA_Features/cdpSimplePrint/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/cdpSimplePrint/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/cdpSimpleQuicksort/.vscode/tasks.json b/Samples/3_CUDA_Features/cdpSimpleQuicksort/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/cdpSimpleQuicksort/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/cudaCompressibleMemory/.vscode/tasks.json b/Samples/3_CUDA_Features/cudaCompressibleMemory/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/cudaCompressibleMemory/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/cudaTensorCoreGemm/.vscode/tasks.json b/Samples/3_CUDA_Features/cudaTensorCoreGemm/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/cudaTensorCoreGemm/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/dmmaTensorCoreGemm/.vscode/tasks.json b/Samples/3_CUDA_Features/dmmaTensorCoreGemm/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/dmmaTensorCoreGemm/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/globalToShmemAsyncCopy/.vscode/tasks.json b/Samples/3_CUDA_Features/globalToShmemAsyncCopy/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/globalToShmemAsyncCopy/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/graphConditionalNodes/.vscode/tasks.json b/Samples/3_CUDA_Features/graphConditionalNodes/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/graphConditionalNodes/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/graphMemoryFootprint/.vscode/tasks.json b/Samples/3_CUDA_Features/graphMemoryFootprint/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/graphMemoryFootprint/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/graphMemoryNodes/.vscode/tasks.json b/Samples/3_CUDA_Features/graphMemoryNodes/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/graphMemoryNodes/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/immaTensorCoreGemm/.vscode/tasks.json b/Samples/3_CUDA_Features/immaTensorCoreGemm/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/immaTensorCoreGemm/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/jacobiCudaGraphs/.vscode/tasks.json b/Samples/3_CUDA_Features/jacobiCudaGraphs/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/jacobiCudaGraphs/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/memMapIPCDrv/.vscode/tasks.json b/Samples/3_CUDA_Features/memMapIPCDrv/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/memMapIPCDrv/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/newdelete/.vscode/tasks.json b/Samples/3_CUDA_Features/newdelete/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/newdelete/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/ptxjit/.vscode/tasks.json b/Samples/3_CUDA_Features/ptxjit/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/ptxjit/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/simpleCudaGraphs/.vscode/tasks.json b/Samples/3_CUDA_Features/simpleCudaGraphs/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/simpleCudaGraphs/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/tf32TensorCoreGemm/.vscode/tasks.json b/Samples/3_CUDA_Features/tf32TensorCoreGemm/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/tf32TensorCoreGemm/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/3_CUDA_Features/warpAggregatedAtomicsCG/.vscode/tasks.json b/Samples/3_CUDA_Features/warpAggregatedAtomicsCG/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/3_CUDA_Features/warpAggregatedAtomicsCG/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/FilterBorderControlNPP/.vscode/tasks.json b/Samples/4_CUDA_Libraries/FilterBorderControlNPP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/FilterBorderControlNPP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/MersenneTwisterGP11213/.vscode/tasks.json b/Samples/4_CUDA_Libraries/MersenneTwisterGP11213/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/MersenneTwisterGP11213/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/batchCUBLAS/.vscode/tasks.json b/Samples/4_CUDA_Libraries/batchCUBLAS/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/batchCUBLAS/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/boxFilterNPP/.vscode/tasks.json b/Samples/4_CUDA_Libraries/boxFilterNPP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/boxFilterNPP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/cannyEdgeDetectorNPP/.vscode/tasks.json b/Samples/4_CUDA_Libraries/cannyEdgeDetectorNPP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/cannyEdgeDetectorNPP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/conjugateGradient/.vscode/tasks.json b/Samples/4_CUDA_Libraries/conjugateGradient/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/conjugateGradient/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/conjugateGradientCudaGraphs/.vscode/tasks.json b/Samples/4_CUDA_Libraries/conjugateGradientCudaGraphs/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/conjugateGradientCudaGraphs/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/conjugateGradientMultiBlockCG/.vscode/tasks.json b/Samples/4_CUDA_Libraries/conjugateGradientMultiBlockCG/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/conjugateGradientMultiBlockCG/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/conjugateGradientMultiDeviceCG/.vscode/tasks.json b/Samples/4_CUDA_Libraries/conjugateGradientMultiDeviceCG/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/conjugateGradientMultiDeviceCG/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/conjugateGradientPrecond/.vscode/tasks.json b/Samples/4_CUDA_Libraries/conjugateGradientPrecond/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/conjugateGradientPrecond/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/conjugateGradientUM/.vscode/tasks.json b/Samples/4_CUDA_Libraries/conjugateGradientUM/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/conjugateGradientUM/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/cuSolverDn_LinearSolver/.vscode/tasks.json b/Samples/4_CUDA_Libraries/cuSolverDn_LinearSolver/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/cuSolverDn_LinearSolver/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/cuSolverRf/.vscode/tasks.json b/Samples/4_CUDA_Libraries/cuSolverRf/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/cuSolverRf/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/cuSolverSp_LinearSolver/.vscode/tasks.json b/Samples/4_CUDA_Libraries/cuSolverSp_LinearSolver/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/cuSolverSp_LinearSolver/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/cuSolverSp_LowlevelCholesky/.vscode/tasks.json b/Samples/4_CUDA_Libraries/cuSolverSp_LowlevelCholesky/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/cuSolverSp_LowlevelCholesky/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/cuSolverSp_LowlevelQR/.vscode/tasks.json b/Samples/4_CUDA_Libraries/cuSolverSp_LowlevelQR/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/cuSolverSp_LowlevelQR/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/cudaNvSci/.vscode/tasks.json b/Samples/4_CUDA_Libraries/cudaNvSci/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/cudaNvSci/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/freeImageInteropNPP/.vscode/tasks.json b/Samples/4_CUDA_Libraries/freeImageInteropNPP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/freeImageInteropNPP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/histEqualizationNPP/.vscode/tasks.json b/Samples/4_CUDA_Libraries/histEqualizationNPP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/histEqualizationNPP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/jitLto/.vscode/tasks.json b/Samples/4_CUDA_Libraries/jitLto/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/jitLto/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/lineOfSight/.vscode/tasks.json b/Samples/4_CUDA_Libraries/lineOfSight/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/lineOfSight/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/matrixMulCUBLAS/.vscode/tasks.json b/Samples/4_CUDA_Libraries/matrixMulCUBLAS/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/matrixMulCUBLAS/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/nvJPEG/.vscode/tasks.json b/Samples/4_CUDA_Libraries/nvJPEG/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/nvJPEG/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/nvJPEG_encoder/.vscode/tasks.json b/Samples/4_CUDA_Libraries/nvJPEG_encoder/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/nvJPEG_encoder/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/oceanFFT/.vscode/tasks.json b/Samples/4_CUDA_Libraries/oceanFFT/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/oceanFFT/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/randomFog/.vscode/tasks.json b/Samples/4_CUDA_Libraries/randomFog/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/randomFog/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/simpleCUBLAS/.vscode/tasks.json b/Samples/4_CUDA_Libraries/simpleCUBLAS/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/simpleCUBLAS/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/simpleCUBLASXT/.vscode/tasks.json b/Samples/4_CUDA_Libraries/simpleCUBLASXT/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/simpleCUBLASXT/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/simpleCUBLAS_LU/.vscode/tasks.json b/Samples/4_CUDA_Libraries/simpleCUBLAS_LU/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/simpleCUBLAS_LU/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/simpleCUFFT/.vscode/tasks.json b/Samples/4_CUDA_Libraries/simpleCUFFT/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/simpleCUFFT/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/simpleCUFFT_2d_MGPU/.vscode/tasks.json b/Samples/4_CUDA_Libraries/simpleCUFFT_2d_MGPU/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/simpleCUFFT_2d_MGPU/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/simpleCUFFT_MGPU/.vscode/tasks.json b/Samples/4_CUDA_Libraries/simpleCUFFT_MGPU/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/simpleCUFFT_MGPU/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/simpleCUFFT_callback/.vscode/tasks.json b/Samples/4_CUDA_Libraries/simpleCUFFT_callback/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/simpleCUFFT_callback/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/4_CUDA_Libraries/watershedSegmentationNPP/.vscode/tasks.json b/Samples/4_CUDA_Libraries/watershedSegmentationNPP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/4_CUDA_Libraries/watershedSegmentationNPP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/BlackScholes/.vscode/tasks.json b/Samples/5_Domain_Specific/BlackScholes/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/BlackScholes/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/BlackScholes_nvrtc/.vscode/tasks.json b/Samples/5_Domain_Specific/BlackScholes_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/BlackScholes_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/FDTD3d/.vscode/tasks.json b/Samples/5_Domain_Specific/FDTD3d/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/FDTD3d/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/HSOpticalFlow/.vscode/tasks.json b/Samples/5_Domain_Specific/HSOpticalFlow/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/HSOpticalFlow/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/Mandelbrot/.vscode/tasks.json b/Samples/5_Domain_Specific/Mandelbrot/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/Mandelbrot/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/MonteCarloMultiGPU/.vscode/tasks.json b/Samples/5_Domain_Specific/MonteCarloMultiGPU/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/MonteCarloMultiGPU/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/NV12toBGRandResize/.vscode/tasks.json b/Samples/5_Domain_Specific/NV12toBGRandResize/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/NV12toBGRandResize/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/SobelFilter/.vscode/tasks.json b/Samples/5_Domain_Specific/SobelFilter/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/SobelFilter/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/SobolQRNG/.vscode/tasks.json b/Samples/5_Domain_Specific/SobolQRNG/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/SobolQRNG/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/bicubicTexture/.vscode/tasks.json b/Samples/5_Domain_Specific/bicubicTexture/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/bicubicTexture/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/bilateralFilter/.vscode/tasks.json b/Samples/5_Domain_Specific/bilateralFilter/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/bilateralFilter/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/binomialOptions/.vscode/tasks.json b/Samples/5_Domain_Specific/binomialOptions/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/binomialOptions/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/binomialOptions_nvrtc/.vscode/tasks.json b/Samples/5_Domain_Specific/binomialOptions_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/binomialOptions_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/convolutionFFT2D/.vscode/tasks.json b/Samples/5_Domain_Specific/convolutionFFT2D/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/convolutionFFT2D/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/dwtHaar1D/.vscode/tasks.json b/Samples/5_Domain_Specific/dwtHaar1D/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/dwtHaar1D/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/dxtc/.vscode/tasks.json b/Samples/5_Domain_Specific/dxtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/dxtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/fastWalshTransform/.vscode/tasks.json b/Samples/5_Domain_Specific/fastWalshTransform/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/fastWalshTransform/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/fluidsGL/.vscode/tasks.json b/Samples/5_Domain_Specific/fluidsGL/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/fluidsGL/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/marchingCubes/.vscode/tasks.json b/Samples/5_Domain_Specific/marchingCubes/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/marchingCubes/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/nbody/.vscode/tasks.json b/Samples/5_Domain_Specific/nbody/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/nbody/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/p2pBandwidthLatencyTest/.vscode/tasks.json b/Samples/5_Domain_Specific/p2pBandwidthLatencyTest/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/p2pBandwidthLatencyTest/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/postProcessGL/.vscode/tasks.json b/Samples/5_Domain_Specific/postProcessGL/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/postProcessGL/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/quasirandomGenerator/.vscode/tasks.json b/Samples/5_Domain_Specific/quasirandomGenerator/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/quasirandomGenerator/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/quasirandomGenerator_nvrtc/.vscode/tasks.json b/Samples/5_Domain_Specific/quasirandomGenerator_nvrtc/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/quasirandomGenerator_nvrtc/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/recursiveGaussian/.vscode/tasks.json b/Samples/5_Domain_Specific/recursiveGaussian/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/recursiveGaussian/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/simpleGL/.vscode/tasks.json b/Samples/5_Domain_Specific/simpleGL/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/simpleGL/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/simpleVulkan/.vscode/tasks.json b/Samples/5_Domain_Specific/simpleVulkan/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/simpleVulkan/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/simpleVulkanMMAP/.vscode/tasks.json b/Samples/5_Domain_Specific/simpleVulkanMMAP/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/simpleVulkanMMAP/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/smokeParticles/.vscode/tasks.json b/Samples/5_Domain_Specific/smokeParticles/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/smokeParticles/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/stereoDisparity/.vscode/tasks.json b/Samples/5_Domain_Specific/stereoDisparity/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/stereoDisparity/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/volumeFiltering/.vscode/tasks.json b/Samples/5_Domain_Specific/volumeFiltering/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/volumeFiltering/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/volumeRender/.vscode/tasks.json b/Samples/5_Domain_Specific/volumeRender/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/volumeRender/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/5_Domain_Specific/vulkanImageCUDA/.vscode/tasks.json b/Samples/5_Domain_Specific/vulkanImageCUDA/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/5_Domain_Specific/vulkanImageCUDA/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/6_Performance/LargeKernelParameter/.vscode/tasks.json b/Samples/6_Performance/LargeKernelParameter/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/6_Performance/LargeKernelParameter/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/6_Performance/UnifiedMemoryPerf/.vscode/tasks.json b/Samples/6_Performance/UnifiedMemoryPerf/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/6_Performance/UnifiedMemoryPerf/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/6_Performance/alignedTypes/.vscode/tasks.json b/Samples/6_Performance/alignedTypes/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/6_Performance/alignedTypes/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/6_Performance/cudaGraphsPerfScaling/.vscode/tasks.json b/Samples/6_Performance/cudaGraphsPerfScaling/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/6_Performance/cudaGraphsPerfScaling/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/6_Performance/transpose/.vscode/tasks.json b/Samples/6_Performance/transpose/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/6_Performance/transpose/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/7_libNVVM/README.md b/Samples/7_libNVVM/README.md index 6b1128b4..09fbe98c 100644 --- a/Samples/7_libNVVM/README.md +++ b/Samples/7_libNVVM/README.md @@ -59,7 +59,7 @@ samples on Linux as part of the toplevel cuda-samples build. Windows users should build manually via utils/built.bat or Visual Studio's CMake integration. To build and run the libNVVM samples with CUDA Toolkits 13.0 or newer, user-mode -driver 580 and newer, old kernel-mode drivers (version 550 or earlier),youm must +driver 580 and newer, old kernel-mode drivers (version 550 or earlier),you must update the CMake invocation in utils/build.sh or build.bat by adding `CMAKE_PREFIX_PATH` with a stubs path as follows: ``` diff --git a/Samples/8_Platform_Specific/Tegra/EGLSync_CUDAEvent_Interop/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/EGLSync_CUDAEvent_Interop/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/EGLSync_CUDAEvent_Interop/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/cuDLAErrorReporting/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/cuDLAErrorReporting/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/cuDLAErrorReporting/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/cuDLAHybridMode/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/cuDLAHybridMode/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/cuDLAHybridMode/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/cuDLALayerwiseStatsHybrid/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/cuDLALayerwiseStatsHybrid/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/cuDLALayerwiseStatsHybrid/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/cuDLALayerwiseStatsStandalone/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/cuDLALayerwiseStatsStandalone/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/cuDLALayerwiseStatsStandalone/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/cuDLAStandaloneMode/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/cuDLAStandaloneMode/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/cuDLAStandaloneMode/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/cudaNvSciBufMultiplanar/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/cudaNvSciBufMultiplanar/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/cudaNvSciBufMultiplanar/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/cudaNvSciNvMedia/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/cudaNvSciNvMedia/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/cudaNvSciNvMedia/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/fluidsGLES/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/fluidsGLES/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/fluidsGLES/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/nbody_opengles/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/nbody_opengles/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/nbody_opengles/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/simpleGLES/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/simpleGLES/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/simpleGLES/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/Samples/8_Platform_Specific/Tegra/simpleGLES_EGLOutput/.vscode/tasks.json b/Samples/8_Platform_Specific/Tegra/simpleGLES_EGLOutput/.vscode/tasks.json deleted file mode 100644 index 4509aeb1..00000000 --- a/Samples/8_Platform_Specific/Tegra/simpleGLES_EGLOutput/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "sample", - "type": "shell", - "command": "make dbg=1", - "problemMatcher": ["$nvcc"], - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/cmake/Modules/FindNVSCI.cmake b/cmake/Modules/FindNVSCI.cmake index 198e2b89..883ae397 100644 --- a/cmake/Modules/FindNVSCI.cmake +++ b/cmake/Modules/FindNVSCI.cmake @@ -19,8 +19,8 @@ find_library(NVSCIBUF_LIBRARY find_library(NVSCISYNC_LIBRARY NAMES nvscisync libnvscisync PATHS - $/usr/lib - $/usr/lib/${CMAKE_SYSTEM_PROCESSOR}-linux-gnu + /usr/lib + /usr/lib/${CMAKE_SYSTEM_PROCESSOR}-linux-gnu PATH_SUFFIXES nvidia )