mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-12 10:48:53 +03:00
11 lines
211 B
Rust
11 lines
211 B
Rust
#![crate_type = "bin"]
|
|
|
|
use std::io;
|
|
use std::process::Command;
|
|
|
|
fn main() -> io::Result<()> {
|
|
let status = Command::new("direct_cuinit.exe").status()?;
|
|
assert!(status.success());
|
|
Ok(())
|
|
}
|