Skip to content

Commit c46754b

Browse files
committed
Update samples for 12.3
1 parent 03309a2 commit c46754b

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
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.

Samples/5_Domain_Specific/simpleVulkan/VulkanBaseApp.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,16 @@
3131
* https://vulkan-tutorial.com/
3232
*/
3333

34-
#include <stdexcept>
35-
#include <iostream>
36-
#include <fstream>
3734
#include <algorithm>
35+
#include <fstream>
3836
#include <functional>
37+
#include <iostream>
38+
#include <limits>
3939
#include <set>
40+
#include <stdexcept>
4041
#include <string.h>
4142

43+
4244
#include "VulkanBaseApp.h"
4345

4446
#define GLFW_INCLUDE_VULKAN

Samples/5_Domain_Specific/simpleVulkanMMAP/VulkanBaseApp.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,16 @@
3131
* https://vulkan-tutorial.com/
3232
*/
3333

34-
#include <stdexcept>
35-
#include <iostream>
36-
#include <fstream>
3734
#include <algorithm>
35+
#include <fstream>
3836
#include <functional>
37+
#include <iostream>
38+
#include <limits>
3939
#include <set>
40+
#include <stdexcept>
4041
#include <string.h>
4142

43+
4244
#include "VulkanBaseApp.h"
4345
#include "VulkanCudaInterop.h"
4446

0 commit comments

Comments
 (0)