Skip to content

Commit 1fa9c59

Browse files
committed
Fixing missing limits header on Vulkan app and missing cuDLA apps
1 parent 03309a2 commit 1fa9c59

File tree

21 files changed

+3560
-8
lines changed

21 files changed

+3560
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Changelog
22

3-
### CUDA 12.1
3+
### CUDA 12.2
44
* libNVVM samples received updates
55
* Fixed jitLto Case issues
66
* Enabled HOST_COMPILER flag to the makefiles for GCC which is untested but may still work.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"${workspaceFolder}/../../../Common"
8+
],
9+
"defines": [],
10+
"compilerPath": "/usr/local/cuda/bin/nvcc",
11+
"cStandard": "gnu17",
12+
"cppStandard": "gnu++14",
13+
"intelliSenseMode": "linux-gcc-x64",
14+
"configurationProvider": "ms-vscode.makefile-tools"
15+
}
16+
],
17+
"version": 4
18+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"nvidia.nsight-vscode-edition",
4+
"ms-vscode.cpptools",
5+
"ms-vscode.makefile-tools"
6+
]
7+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "CUDA C++: Launch",
5+
"type": "cuda-gdb",
6+
"request": "launch",
7+
"program": "${workspaceFolder}/cuDLALayerwiseStatsHybrid"
8+
}
9+
]
10+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "sample",
6+
"type": "shell",
7+
"command": "make dbg=1",
8+
"problemMatcher": ["$nvcc"],
9+
"group": {
10+
"kind": "build",
11+
"isDefault": true
12+
}
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)