Skip to content

Commit

Permalink
Updating graphConditionalNodes orphan directory
Browse files Browse the repository at this point in the history
  • Loading branch information
rnertney committed Apr 10, 2024
1 parent 3559ca4 commit 5f97d7d
Show file tree
Hide file tree
Showing 14 changed files with 1,300 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/../../../Common"
],
"defines": [],
"compilerPath": "/usr/local/cuda/bin/nvcc",
"cStandard": "gnu17",
"cppStandard": "gnu++14",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"nvidia.nsight-vscode-edition",
"ms-vscode.cpptools",
"ms-vscode.makefile-tools"
]
}
10 changes: 10 additions & 0 deletions Samples/3_CUDA_Features/graphConditionalNodes/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"configurations": [
{
"name": "CUDA C++: Launch",
"type": "cuda-gdb",
"request": "launch",
"program": "${workspaceFolder}/graphConditionalNodes"
}
]
}
15 changes: 15 additions & 0 deletions Samples/3_CUDA_Features/graphConditionalNodes/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "sample",
"type": "shell",
"command": "make dbg=1",
"problemMatcher": ["$nvcc"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Loading

0 comments on commit 5f97d7d

Please sign in to comment.