Use openblas instead

This commit is contained in:
2021-10-26 22:30:54 +02:00
parent 6535f1faae
commit 57b423df8a
16 changed files with 115 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
extern crate intel_mkl_src;
extern crate blas_src;
use kickscore as ks;

View File

@@ -1,4 +1,4 @@
extern crate intel_mkl_src;
extern crate blas_src;
use approx::assert_abs_diff_eq;
use kickscore as ks;
@@ -41,5 +41,5 @@ fn kickscore_basic() {
let (p_win, _p_los) = model.probabilities(&[&"Jerry"], &[&"Tom"], -1.0);
assert_abs_diff_eq!(p_win, 0.903756079972532, epsilon = f64::EPSILON);
assert_abs_diff_eq!(p_win, 0.9037560799725326, epsilon = f64::EPSILON);
}

View File

@@ -1,4 +1,4 @@
extern crate intel_mkl_src;
extern crate blas_src;
use std::cmp::Ordering;
use std::collections::HashSet;