This commit is contained in:
nora 2022-01-10 20:35:44 +01:00
parent 2869a4688b
commit c03b0c399a
8 changed files with 966 additions and 225 deletions

8
build.rs Normal file
View file

@ -0,0 +1,8 @@
use cuda_builder::CudaBuilder;
fn main() {
CudaBuilder::new("./gpu")
.copy_to("target/gpu.ptx")
.build()
.unwrap();
}