Update to add Cuda to build system
This commit is contained in:
parent
8408036078
commit
68f8b02f0a
8 changed files with 120 additions and 17 deletions
9
main.cpp
9
main.cpp
|
@ -1,3 +1,10 @@
|
|||
#include "hello_world.h"
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Starting CUDA example..." << std::endl; // Using endl to flush
|
||||
check_cuda();
|
||||
launch_hello_cuda();
|
||||
std::cout << "Ending CUDA example" << std::endl; // Using endl to flush
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue