mirror of
https://github.com/Noratrieb/mandelbrot-rust.git
synced 2026-01-14 23:35:03 +01:00
8 lines
No EOL
146 B
Rust
8 lines
No EOL
146 B
Rust
use cuda_builder::CudaBuilder;
|
|
|
|
fn main() {
|
|
CudaBuilder::new("./gpu")
|
|
.copy_to("target/gpu.ptx")
|
|
.build()
|
|
.unwrap();
|
|
} |