Replies: 1 comment
-
I don't think there is a good reason for that. Maybe for improving readability by reducing verbosity. I am not aware of any performance gain for using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Inspecting the cblas.h file I can see that the qualifier
const
is employed in all input arguments (even with those called by value) with the exception of the enumerated types CBLAS_LAYOUT et al. Two questions:const
is not used with the enumerated types?cblas_sgemv
maintainsconst
with the enumerated types. I suppose it is a forget from previous versions (I seem to remember thatconst
was used in previous versions). Am I right?Beta Was this translation helpful? Give feedback.
All reactions