rust-ndarray / ndarray

ndarray: an N-dimensional array with array views, multidimensional slicing, and efficient operations
https://docs.rs/ndarray/
Apache License 2.0
3.63k stars 307 forks source link

what is ndarray netlib #1445

Closed wangjiawen2013 closed 1 month ago

wangjiawen2013 commented 1 month ago

Hi, I am a beginner of ndarray, who can tell what netlib is ? Does it make ndarray faster ?

nilgoyette commented 1 month ago

netlib is one of the possible implementations of "BLAS". Using netlib or any other could make your code faster, but this is not always true. It depends on your data and what you do with it.

I suggest you use ndarray "normally" (without BLAS). When your project is finished, you can test the performance with and without it.