Allow using mkl in tests. (#90)

This commit is contained in:
Laurent Mazare
2023-07-06 13:25:05 +01:00
committed by GitHub
parent dd60bd84bb
commit f1e29cd405
2 changed files with 25 additions and 0 deletions

View File

@ -1,4 +1,8 @@
#![allow(dead_code)]
#[cfg(feature = "mkl")]
extern crate intel_mkl_src;
use candle::{Result, Tensor};
#[macro_export]