mirror of https://github.com/tracel-ai/burn.git
test burn-ndarray also with accelerate (#1050)
This commit is contained in:
parent
82f5722ca1
commit
d9f93d31b4
|
@ -275,13 +275,18 @@ fn burn_dataset_features_std() {
|
||||||
endgroup!();
|
endgroup!();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Test burn-candle with accelerate (macOS only)
|
// macOS only checks
|
||||||
// Leverages the macOS Accelerate framework: https://developer.apple.com/documentation/accelerate
|
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
fn burn_candle_accelerate() {
|
fn macos_checks() {
|
||||||
|
// Leverages the macOS Accelerate framework: https://developer.apple.com/documentation/accelerate
|
||||||
group!("Checks: burn-candle (accelerate)");
|
group!("Checks: burn-candle (accelerate)");
|
||||||
cargo_test(["-p", "burn-candle", "--features", "accelerate"].into());
|
cargo_test(["-p", "burn-candle", "--features", "accelerate"].into());
|
||||||
endgroup!();
|
endgroup!();
|
||||||
|
|
||||||
|
// Leverages the macOS Accelerate framework: https://developer.apple.com/documentation/accelerate
|
||||||
|
group!("Checks: burn-ndarray (accelerate)");
|
||||||
|
cargo_test(["-p", "burn-ndarray", "--features", "blas-accelerate"].into());
|
||||||
|
endgroup!();
|
||||||
}
|
}
|
||||||
|
|
||||||
fn std_checks() {
|
fn std_checks() {
|
||||||
|
@ -328,7 +333,7 @@ fn std_checks() {
|
||||||
|
|
||||||
// Test burn-candle with accelerate (macOS only)
|
// Test burn-candle with accelerate (macOS only)
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
burn_candle_accelerate();
|
macos_checks();
|
||||||
|
|
||||||
// Test burn-dataset features
|
// Test burn-dataset features
|
||||||
burn_dataset_features_std();
|
burn_dataset_features_std();
|
||||||
|
|
Loading…
Reference in New Issue