-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b898e8
commit 89031ef
Showing
14 changed files
with
540 additions
and
336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
use luisa::prelude::*; | ||
use luisa_compute as luisa; | ||
use std::env::current_exe; | ||
|
||
fn main() { | ||
luisa::init_logger(); | ||
let args: Vec<String> = std::env::args().collect(); | ||
assert!( | ||
args.len() <= 2, | ||
"Usage: {} <backend>. <backend>: cpu, cuda, dx, metal, remote", | ||
args[0] | ||
); | ||
|
||
let ctx = Context::new(current_exe().unwrap()); | ||
let device = ctx.create_device(if args.len() == 2 { | ||
args[1].as_str() | ||
} else { | ||
"cpu" | ||
}); | ||
|
||
let add = track!(Callable::<fn(Expr<f32>, Expr<f32>) -> Expr<f32>>::new( | ||
&device, | ||
|a, b| { | ||
// callables can be defined within callables | ||
let partial_add = Callable::<fn(Expr<f32>) -> Expr<f32>>::new(&device, |y| a + y); | ||
partial_add.call(b) | ||
} | ||
)); | ||
let x = device.create_buffer::<f32>(1024); | ||
let y = device.create_buffer::<f32>(1024); | ||
let z = device.create_buffer::<f32>(1024); | ||
x.view(..).fill_fn(|i| i as f32); | ||
y.view(..).fill_fn(|i| 1000.0 * i as f32); | ||
let kernel = Kernel::<fn(Buffer<f32>)>::new( | ||
&device, | ||
&track!(|buf_z| { | ||
let buf_x = x.var(); | ||
let buf_y = y.var(); | ||
let tid = dispatch_id().x; | ||
let x = buf_x.read(tid); | ||
let y = buf_y.read(tid); | ||
|
||
buf_z.write(tid, add.call(x, y)); | ||
}), | ||
); | ||
kernel.dispatch([1024, 1, 1], &z); | ||
let z_data = z.view(..).copy_to_vec(); | ||
println!("{:?}", &z_data[0..16]); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.