/third_party/boost/libs/numeric/ublas/benchmarks/opencl/ |
D | inner_prod.cpp | 23 template <typename S, bool C> class inner_prod; 26 class inner_prod<R(V,V), C> : public benchmark<R(V,V), C> class 29 inner_prod(std::string const &name) : benchmark<R(V,V), C>(name) {} in inner_prod() function in boost::numeric::ublas::benchmark::opencl::inner_prod 32 ublas::opencl::inner_prod(*this->a, *this->b, this->queue); in operation() 46 bm::opencl::inner_prod<T(vector,vector), true> p(name); in benchmark() 51 bm::opencl::inner_prod<T(vector,vector), false> p(name); in benchmark()
|
D | Jamfile | 26 exe inner_prod : inner_prod.cpp ;
|
/third_party/boost/libs/numeric/ublas/benchmarks/ |
D | inner_prod.cpp | 18 template <typename S> class inner_prod; 21 class inner_prod<R(V1, V2)> : public benchmark class 24 inner_prod(std::string const &name) : benchmark(name) {} in inner_prod() function in boost::numeric::ublas::benchmark::inner_prod 32 c = ublas::inner_prod(a, b); in operation() 50 bm::inner_prod<T(vector, vector)> p("inner_prod(vector<" + type + ">)"); in benchmark()
|
D | Jamfile | 14 exe inner_prod : inner_prod.cpp ; 20 exe reference/inner_prod : reference/inner_prod.cpp ;
|
/third_party/boost/libs/numeric/ublas/benchmarks/reference/ |
D | inner_prod.cpp | 18 template <typename S> class inner_prod; 21 class inner_prod<R(V1, V2)> : public benchmark class 24 inner_prod(std::string const &name) : benchmark(name) {} in inner_prod() function in boost::numeric::ublas::benchmark::inner_prod 52 bm::inner_prod<T(vector, vector)> p("ref::inner_prod(vector<" + type + ">)"); in benchmark()
|
/third_party/boost/libs/numeric/ublas/test/opencl/ |
D | inner_prod_test.hpp | 40 result_inner_prod_ublas = ublas::inner_prod(va, vb); in run() 42 result_inner_prod_opencl = opencl::inner_prod(va, vb, queue); in run()
|
/third_party/boost/libs/concept_check/test/ |
D | stl_concept_covering.cpp | 93 namespace inner_prod namespace 107 inner_prod::RetMult 108 operator*(const inner_prod::Tin1&, const inner_prod::Tin2&) { in operator *() 109 return inner_prod::RetMult(dummy_cons); in operator *() 111 inner_prod::RetAdd 112 operator+(const inner_prod::T&, in operator +() 113 const inner_prod::RetMult&) { in operator +() 114 return inner_prod::RetAdd(dummy_cons); in operator +() 909 input_iterator_archetype<inner_prod::Tin1> in1; in main() 910 input_iterator_archetype<inner_prod::Tin2> in2; in main() [all …]
|
/third_party/boost/libs/numeric/ublas/doc/samples/ |
D | vector_binary_redux.cpp | 21 std::cout << inner_prod (v1, v2) << std::endl; in main()
|
/third_party/boost/libs/numeric/ublas/test/ |
D | test_fixed_containers.cpp | 139 auto ip = inner_prod( v, v); in test_vector() 140 auto ip1 = inner_prod( v1, v1); in test_vector()
|
D | test11.cpp | 135 t = ublas::inner_prod (v1, v2); in test_expression_with() 141 v1 = v1 * ublas::inner_prod (v1, v2); in test_expression_with()
|
D | test71.cpp | 105 t = ublas::inner_prod (v1, v2); in test_with()
|
D | test31.cpp | 121 t = ublas::inner_prod (v1, v2); in test_with()
|
/third_party/boost/libs/multiprecision/test/ublas_interop/ |
D | test11.cpp | 142 t = ublas::inner_prod(v1, v2); in test_expression_with() 148 v1 = v1 * ublas::inner_prod(v1, v2); in test_expression_with()
|
D | test71.cpp | 115 t = ublas::inner_prod(v1, v2); in test_with()
|
D | test31.cpp | 127 t = ublas::inner_prod(v1, v2); in test_with()
|
/third_party/boost/libs/numeric/ublas/test/tensor/ |
D | test_functions.cpp | 234 auto c = ublas::inner_prod(a, b); in BOOST_FIXTURE_TEST_CASE_TEMPLATE() 261 auto c = ublas::inner_prod(a, a); in BOOST_FIXTURE_TEST_CASE_TEMPLATE()
|
/third_party/boost/boost/numeric/ublas/opencl/ |
D | prod.hpp | 266 inner_prod(ublas::vector<T, opencl::storage> const &a, in inner_prod() function 277 inner_prod(ublas::vector<T, A> const &a, in inner_prod() function 283 return inner_prod(adev, bdev, queue); in inner_prod()
|
/third_party/boost/boost/numeric/ublas/ |
D | blas.hpp | 76 return inner_prod (v1, v2); in dot()
|
D | vector_expression.hpp | 1739 inner_prod (const vector_expression<E1> &e1, in inner_prod() function
|
/third_party/boost/boost/numeric/ublas/tensor/ |
D | operators_arithmetic.hpp | 234 return boost::numeric::ublas::inner_prod( tensor_left, tensor_right ); in operator *()
|
D | functions.hpp | 308 auto inner_prod(tensor<V,F,A1> const& a, tensor<V,F,A2> const& b) in inner_prod() function
|