rust-ml / linfa

A Rust machine learning framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

what is the difference between these libarary and pure rust?

yiyepiaoling0715 opened this issue · comments

what is the difference between these libarary and pure rust?
image

These libraries are "well-known" BLAS implementations in C and/or Fortran and can be used here, but can be tricky to build/link with depending on the system. The pure Rust BLAS subset implementation was introduced to lower the barrier of entry in linfa as it is definitely the easiest way to compile. That said, depending on your use case you might want to choose a BLAS implementation to get better performances. See also #228