mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-29 05:57:57 +03:00
10 lines
211 B
Rust
10 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(())
|
|
}
|