Initial commit
This commit is contained in:
commit
311a93cdd6
15 changed files with 2702 additions and 0 deletions
10
main.cpp
Normal file
10
main.cpp
Normal file
|
@ -0,0 +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