Home
last modified time | relevance | path

Searched refs:axpy (Results 1 – 20 of 20) sorted by relevance

/external/eigen/bench/btl/actions/
Daction_axpy.hh100 Interface::axpy(_coef,X,Y,_size); in calculate()
110 STL_interface<typename Interface::real_type>::axpy(_coef,X_stl,Y_stl,_size); in check_result()
/external/eigen/bench/btl/libs/BLAS/
Dblas_interface_impl.hh57 static inline void axpy(SCALAR coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in blas_interface
58 BLAS_FUNC(axpy)(&N,&coef,X,&intone,Y,&intone); in axpy()
63 BLAS_FUNC(axpy)(&N,&a,X,&intone,Y,&intone); in axpby()
/external/llvm/docs/
DCompileCudaWithLLVM.rst60 Suppose you want to compile and run the following CUDA program (``axpy.cu``)
67 __global__ void axpy(float a, float* x, float* y) {
87 axpy<<<1, kDataLen>>>(a, device_x, device_y);
107 $ clang++ axpy.cu -o axpy --cuda-gpu-arch=<GPU arch> \
110 $ ./axpy
/external/eigen/bench/btl/
DREADME40 BTL_CONFIG="-a axpy:vector_matrix:trisolve:ata" ctest -V -R eigen2
43 BTL_CONFIG="-a axpy:vector_matrix:trisolve:ata --overwrite" ctest -V -R eigen2
65 actions : sources for different action wrappers (axpy, matrix-matrix product) to be tested.
122 *** axpy(real coef, const gene_vector & X, gene_vector & Y, int N)
/external/eigen/bench/btl/data/
Dgo_mean34 source mk_mean_script.sh axpy $1 11 2500 100000 250000 $mode $prefix
Daction_settings.txt5 axpy ; "{/*1.5 Y += alpha X}" ; "vector size" ; 5:1000000
Dsmooth_all.sh6 AXPY_FILE=`find ${ORIG_DIR} -name "*.dat" | grep axpy`
/external/eigen/bench/btl/libs/blitz/
Dtiny_blitz_interface.hh99 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in tiny_blitz_interface
Dblitz_interface.hh123 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N) in axpy() function in blitz_interface
/external/eigen/bench/btl/libs/tvmet/
Dtvmet_interface.hh97 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in tvmet_interface
/external/eigen/bench/btl/libs/tensors/
Dtensor_interface.hh88 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int /*N*/){ in axpy() function in tensor_interface
/external/eigen/bench/btl/libs/blaze/
Dblaze_interface.hh107 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in blaze_interface
/external/eigen/bench/btl/libs/mtl4/
Dmtl4_interface.hh111 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in mtl4_interface
/external/eigen/bench/btl/libs/gmm/
Dgmm_interface.hh105 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in gmm_interface
/external/eigen/bench/btl/libs/ublas/
Dublas_interface.hh117 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in ublas_interface
/external/eigen/bench/btl/libs/eigen2/
Deigen2_interface.hh120 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in eigen2_interface
/external/eigen/blas/
Dlevel1_impl.h12 int EIGEN_BLAS_FUNC(axpy)(const int *n, const RealScalar *palpha, const RealScalar *px, const int *… in EIGEN_BLAS_FUNC() argument
/external/eigen/bench/btl/libs/STL/
DSTL_interface.hh182 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy() function in STL_interface
/external/eigen/bench/btl/libs/eigen3/
Deigen3_interface.hh177 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int /*N*/){ in axpy() function in eigen3_interface
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DCompileCudaWithLLVM.rst48 program as a toy example. Save it as ``axpy.cu``. (Clang detects that you're
57 $ clang++ axpy.cu -o axpy --cuda-gpu-arch=<GPU arch> \
60 $ ./axpy