Cuda test program.

This commit is contained in:
Ernie Pasveer
2023-09-30 17:14:34 -05:00
parent d4851f12ac
commit d6d44be458
7 changed files with 171 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#include <string>
#include <iostream>
int main (int argc, char* argv[]) {
int j = 0;
for (int i=0; i<argc; i++) {
std::cout << "XX: "
<< i
<< " "
<< argv[i]
<< std::endl;
}
std::string message = "Hello, World!";
std::cout << std::endl;
std::cout << message << std::endl;
std::cout << std::endl;
return 0;
}