You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Some backends copy host data to staging buffer at submission time. If the host data is written by device then later upload to device again without syncing in between, the old data is uploaded.
To Reproduce
The following code using rust frontend can reproduce the issue on CPU and DX on my machine
use luisa::prelude::*;use luisa_compute as luisa;use std::env::current_exe;fnmain(){
luisa::init_logger_verbose();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 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 asf32);
y.view(..).fill_fn(|i| 1000.0* i asf32);let kernel = device.create_kernel_with_options::<fn(Buffer<f32>)>(KernelBuildOptions{name:Some("vecadd".into()),
..Default::default()},&track!(|buf_z| {//zispassbyargletbuf_x=&x;//xandyarecapturedletbuf_y=&y;lettid=dispatch_id().x;letx=buf_x.read(tid);lety=buf_y.read(tid);buf_z.write(tid,x+y);}),);letmut z_data = vec![123.0f32;1024];unsafe{let s = device.default_stream().scope();let z_data_ptr = z_data.as_mut_ptr();
s.submit([
z.copy_from_async(std::slice::from_raw_parts_mut(z_data_ptr,1024)),
kernel.dispatch_async([1024,1,1],&z),
z.copy_to_async(std::slice::from_raw_parts_mut(z_data_ptr,1024)),
z.copy_from_async(std::slice::from_raw_parts_mut(z_data_ptr,1024)),
z.copy_to_buffer_async(&x)]);}// this should produce the expected behavior// unsafe {// let z_data_ptr = z_data.as_mut_ptr();// z.copy_from(std::slice::from_raw_parts_mut(z_data_ptr, 1024));// kernel.dispatch([1024, 1, 1], &z);// z.copy_to(std::slice::from_raw_parts_mut(z_data_ptr, 1024));// z.copy_from(std::slice::from_raw_parts_mut(z_data_ptr, 1024));// z.copy_to_buffer(&x);// }println!("{:?}",&z_data[0..16]);let x_data = x.copy_to_vec();println!("{:?}",&x_data[0..16]);}
Describe the bug
Some backends copy host data to staging buffer at submission time. If the host data is written by device then later upload to device again without syncing in between, the old data is uploaded.
To Reproduce
The following code using rust frontend can reproduce the issue on CPU and DX on my machine
Expected behavior
The correct output should be
However on CPU and DX it is:
instead
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: