Replies: 5 comments 2 replies
-
Hi, I experimented with |
Beta Was this translation helpful? Give feedback.
-
E.g. the generic |
Beta Was this translation helpful? Give feedback.
-
Strictly speaking, I had a look at the assembly code, but I'm not familiar with RISC-V. What is the vector size in this case? |
Beta Was this translation helpful? Give feedback.
-
Hello, The vector size in the example is 256 bits, i.e. 8 floats. I didn't really analyze the generated code, just noticed it is using the vector instruction after adding |
Beta Was this translation helpful? Give feedback.
-
In the current implementation of all linear algebra routines in BLASFEO, in the |
Beta Was this translation helpful? Give feedback.
-
Hello, have you considered using the
restrict
qualifier on some of the output parameters in the generic kernels? It seems to unlock auto-vectorization e.g. on gcc for RISC-V /w V-ext.Beta Was this translation helpful? Give feedback.
All reactions