Tatsuhiro Aoshima
Results
2
comments of
Tatsuhiro Aoshima
I think we can do hadamard products using `xtbmv` with diagonal matrix A as the following: ```c cblas_dtbmv(CblasColMajor, CblasUpper, CblasNoTrans, CblasNonUnit, n, 0, p, 1, q, 1); ``` This code...
Sorry, I recommended to use `xtbmv` for Hadamard product. However, according to `tbmv_thread.c`, using `dtbmv` for Hadamard product is inefficient (calling `xaxpy` for each elements?), so I recommend to use...