cudaCAC/main.cpp

11 lines
265 B
C++
Raw Normal View History

2025-04-15 14:10:01 -04:00
#include "hello_world.h"
#include <iostream>
2017-12-28 11:15:19 -07:00
int main() {
2025-04-15 14:10:01 -04:00
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
2017-12-28 11:15:19 -07:00
return 0;
2025-04-15 14:10:01 -04:00
}