├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json └── tasks.json ├── LICENSE ├── Makefile ├── README.md └── src ├── main.cpp ├── main.cu ├── main.cuh └── main.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/README.md -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shouxieai/cpp-proj-template/HEAD/src/main.cu -------------------------------------------------------------------------------- /src/main.cuh: -------------------------------------------------------------------------------- 1 | 2 | // 修改这个文件,main.cu会发生编译 -------------------------------------------------------------------------------- /src/main.hpp: -------------------------------------------------------------------------------- 1 | 2 | // 修改这个文件,main.cpp会发生编译 --------------------------------------------------------------------------------