Skip to content

Commit

Permalink
Fix cmma test (#1957)
Browse files Browse the repository at this point in the history
  • Loading branch information
laggui authored Jul 2, 2024
1 parent 9e6777d commit 755c070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/burn-cube/src/runtime_tests/cmma.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub fn test_simple_1<R: Runtime>(client: ComputeClient<R::Server, R::Channel>) {
ArrayHandle::new(&out, 256),
);

let actual = client.read(out.binding()).read_sync().unwrap();
let actual = client.read(out.binding());
let actual = f32::from_bytes(&actual);

let expected = [
Expand Down

0 comments on commit 755c070

Please sign in to comment.