Skip to content

Instantly share code, notes, and snippets.

@ugovaretto
Created August 5, 2020 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ugovaretto/d9041cd309fc5a3805fbcbdf09702423 to your computer and use it in GitHub Desktop.
Save ugovaretto/d9041cd309fc5a3805fbcbdf09702423 to your computer and use it in GitHub Desktop.
vscode config for rocm
{
"env": {
"myDefaultIncludePath": ["${workspaceFolder}"]
},
"configurations": [
{
"name": "ROCm",
"intelliSenseMode": "clang-x64",
"includePath": ["${myDefaultIncludePath}", "/opt/rocm/hip/include"],
"compilerPath": "/opt/rocm/hip/bin/hipcc",
"cStandard": "c11",
"cppStandard": "c++17",
"browse": {
"path": ["${workspaceFolder}"],
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
}
}
],
"version": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment