Searched refs:BLAS_FUNC (Results 1 – 1 of 1) sorted by relevance
/external/eigen/bench/btl/libs/BLAS/ |
D | blas_interface_impl.hh | 2 #define BLAS_FUNC(NAME) CAT(CAT(SCALAR_PREFIX,NAME),_) macro 18 BLAS_FUNC(gemv)(¬rans,&N,&N,&fone,A,&N,B,&intone,&fzero,X,&intone); in matrix_vector_product() 22 BLAS_FUNC(symv)(&lower, &N,&fone,A,&N,B,&intone,&fzero,X,&intone); in symv() 26 BLAS_FUNC(syr2)(&lower,&N,&fone,B,&intone,X,&intone,A,&N); in syr2() 30 BLAS_FUNC(ger)(&N,&N,&fone,X,&intone,Y,&intone,A,&N); in ger() 34 BLAS_FUNC(rot)(&N,A,&intone,B,&intone,&c,&s); in rot() 38 BLAS_FUNC(gemv)(&trans,&N,&N,&fone,A,&N,B,&intone,&fzero,X,&intone); in atv_product() 42 BLAS_FUNC(gemm)(¬rans,¬rans,&N,&N,&N,&fone,A,&N,B,&N,&fzero,X,&N); in matrix_matrix_product() 46 BLAS_FUNC(gemm)(¬rans,¬rans,&N,&N,&N,&fone,A,&N,B,&N,&fzero,X,&N); in transposed_matrix_matrix_product() 54 BLAS_FUNC(syrk)(&lower,¬rans,&N,&N,&fone,A,&N,&fzero,X,&N); in aat_product() [all …]
|