diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-08-27 09:42:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 09:42:22 +0100 |
commit | 5320aa6b7d339ff594d3886dd29634ea8cde6f17 (patch) | |
tree | b8dc53eaea3966c288ac3c4a597b4d36c2deefa4 /candle-core/tests/layout_tests.rs | |
parent | a8b39dd7b784b3c3cdd4d228813bd48b2d0d79bb (diff) | |
download | candle-5320aa6b7d339ff594d3886dd29634ea8cde6f17.tar.gz candle-5320aa6b7d339ff594d3886dd29634ea8cde6f17.tar.bz2 candle-5320aa6b7d339ff594d3886dd29634ea8cde6f17.zip |
Move the test-utils bits to a shared place. (#619)
Diffstat (limited to 'candle-core/tests/layout_tests.rs')
-rw-r--r-- | candle-core/tests/layout_tests.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/candle-core/tests/layout_tests.rs b/candle-core/tests/layout_tests.rs index d7b89605..1b29476f 100644 --- a/candle-core/tests/layout_tests.rs +++ b/candle-core/tests/layout_tests.rs @@ -1,5 +1,4 @@ -mod test_utils; -use candle::{Device, IndexOp, Result, Tensor}; +use candle::{test_device, Device, IndexOp, Result, Tensor}; use candle_core as candle; fn contiguous(device: &Device) -> Result<()> { |