L1Benchmark 118 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(copy, "s", cblas_scopy(N, &(x[0]), 1, &(y[0]), 1)) L1Benchmark 119 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(scal, "s", cblas_sscal(N, alpha, &(x[0]), 1)) L1Benchmark 120 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(axpy, "s", cblas_saxpy(N, alpha, &(x[0]), 1, &(y[0]), 1)) L1Benchmark 121 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(dot, "s", result = cblas_sdot(N, &(x[0]), 1, &(y[0]), 1)) L1Benchmark 122 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(asum, "s", result = cblas_sasum(N, &(x[0]), 1)) L1Benchmark 159 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(copy, "d", cblas_dcopy(N, &(x[0]), 1, &(y[0]), 1)) L1Benchmark 160 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(scal, "d", cblas_dscal(N, alpha, &(x[0]), 1)) L1Benchmark 161 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(axpy, "d", cblas_daxpy(N, alpha, &(x[0]), 1, &(y[0]), 1)) L1Benchmark 162 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(dot, "d", result = cblas_ddot(N, &(x[0]), 1, &(y[0]), 1)) L1Benchmark 163 apps/linear_algebra/benchmarks/cblas_benchmarks.cpp L1Benchmark(asum, "d", result = cblas_dasum(N, &(x[0]), 1)) L1Benchmark 85 apps/linear_algebra/benchmarks/eigen_benchmarks.cpp L1Benchmark(copy, type_name<T>(), y = x); L1Benchmark 86 apps/linear_algebra/benchmarks/eigen_benchmarks.cpp L1Benchmark(scal, type_name<T>(), x = alpha * x); L1Benchmark 87 apps/linear_algebra/benchmarks/eigen_benchmarks.cpp L1Benchmark(axpy, type_name<T>(), y = alpha * x + y); L1Benchmark 88 apps/linear_algebra/benchmarks/eigen_benchmarks.cpp L1Benchmark(dot, type_name<T>(), result = x.dot(y)); L1Benchmark 89 apps/linear_algebra/benchmarks/eigen_benchmarks.cpp L1Benchmark(asum, type_name<T>(), result = x.array().abs().sum()); L1Benchmark 109 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(copy, "s", halide_scopy(x.raw_buffer(), y.raw_buffer())) L1Benchmark 110 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(scal, "s", halide_sscal(alpha, x.raw_buffer())) L1Benchmark 111 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(axpy, "s", halide_saxpy(alpha, x.raw_buffer(), y.raw_buffer())) L1Benchmark 112 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(dot, "s", halide_sdot(x.raw_buffer(), y.raw_buffer(), result.raw_buffer())) L1Benchmark 113 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(asum, "s", halide_sasum(x.raw_buffer(), result.raw_buffer())) L1Benchmark 144 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(copy, "d", halide_dcopy(x.raw_buffer(), y.raw_buffer())) L1Benchmark 145 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(scal, "d", halide_dscal(alpha, x.raw_buffer())) L1Benchmark 146 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(axpy, "d", halide_daxpy(alpha, x.raw_buffer(), y.raw_buffer())) L1Benchmark 147 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(dot, "d", halide_ddot(x.raw_buffer(), y.raw_buffer(), result.raw_buffer())) L1Benchmark 148 apps/linear_algebra/benchmarks/halide_benchmarks.cpp L1Benchmark(asum, "d", halide_dasum(x.raw_buffer(), result.raw_buffer()))