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
While working on the macro version of the ops, the following test case was found to yield an exception that was not caught before crossing the ffi boundary
#[test]fntest_repeat(){let stream = StreamOrDevice::default();// We are just testing that the macros compilelet a = Array::from_int(5);let _a = repeat!(a,3,0);let a = Array::from_int(5);let _a = repeat!(a,3,0, stream = &stream);let a = Array::from_int(5);let _a = repeat!(a,3,0, dtype = f32);let a = Array::from_int(5);let _a = repeat!(a,3,0, dtype = f32, stream = &stream);}
The text was updated successfully, but these errors were encountered:
minghuaw
changed the title
Uncaught error in repeat
Uncaught exception in repeatMay 29, 2024
Since we are moving to the new error handling approach. This should not be a problem anymore, but we should add a unit test for this just to be sure before closing this issue
While working on the macro version of the ops, the following test case was found to yield an exception that was not caught before crossing the ffi boundary
The text was updated successfully, but these errors were encountered: