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
The following snippet fails when executing with miri on the latest nightly
use ndarray::*;fnmain(){let a1 = arr2(&[[1.0,2.0],[3.0,4.0]]);let a2 = arr2(&[[2.0,3.0],[4.0,5.0]]);
a1.dot(&a2);}
and results in error: Undefined Behavior: attempting a read access using <16389> at alloc6883[0x48], but that tag does not exist in the borrow stack for this location
I am not sure whether this is a bug in ndarray or a false positive in miri
The following snippet fails when executing with miri on the latest nightly
and results in
error: Undefined Behavior: attempting a read access using <16389> at alloc6883[0x48], but that tag does not exist in the borrow stack for this location
I am not sure whether this is a bug in
ndarray
or a false positive in miriPlayground link
The text was updated successfully, but these errors were encountered: