-
Just a quick question: is differentiating BLAS calls supported? I found some code related to BLAS, but I didn't find any documentation. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yes some level 1 functions like, |
Beta Was this translation helpful? Give feedback.
-
There isn't any documentation right now, because I'm just writing it, once I'll finished all I will add some notes do the docs. I am currently testing quite a few new functions, once that's done we should hopefully have |
Beta Was this translation helpful? Give feedback.
There isn't any documentation right now, because I'm just writing it, once I'll finished all I will add some notes do the docs.
For the meantime I would not recommend using Blas+Enzyme for the C++ side. Unlike Enzyme.jl we don't have any fallback for not yet implemented functions. Thus if you start using any of the interesting functions it is pretty likely to fail.
I am currently testing quite a few new functions, once that's done we should hopefully have
scal, axpy, dot, gemv, ger, and gemm. Thanks to Tablegen other functions shouldn't take too long to add after that.
Are there any specific ones which you need?