Searched refs:redux (Results 1 - 11 of 11) sorted by relevance

/external/eigen/unsupported/test/
H A Dcxx11_tensor_reduction_sycl.cpp67 Tensor<float, 2> redux(reduced_tensorRange);
72 redux= in.sum(red_axis);
87 VERIFY_IS_APPROX(redux_gpu(j,k), redux(j,k));
105 Tensor<float, 2> redux(reduced_tensorRange);
110 redux= in.sum(red_axis);
124 VERIFY_IS_APPROX(redux_gpu(j,k), redux(j,k));
/external/eigen/Eigen/src/Core/
H A DRedux.h401 /** \returns the result of a full redux operation on the whole matrix or vector using \a func
411 DenseBase<Derived>::redux(const Func& func) const function in class:Eigen::DenseBase
428 return derived().redux(Eigen::internal::scalar_min_op<Scalar,Scalar>());
438 return derived().redux(Eigen::internal::scalar_max_op<Scalar,Scalar>());
453 return derived().redux(Eigen::internal::scalar_sum_op<Scalar,Scalar>());
468 return Scalar(derived().redux(Eigen::internal::scalar_sum_op<Scalar,Scalar>())) / Scalar(this->size());
487 return derived().redux(Eigen::internal::scalar_product_op<Scalar>());
H A DStableNorm.h215 return this->cwiseAbs().redux(internal::scalar_hypot_op<RealScalar>());
H A DVectorwiseOp.h21 * \tparam MatrixType the type of the matrix we are applying the redux operation
23 * \tparam Direction indicates the direction of the redux (#Vertical or #Horizontal)
25 * This class represents an expression of a partial redux operator of a matrix.
134 { return mat.redux(m_functor); }
145 * \tparam Direction indicates the direction of the redux (#Vertical or #Horizontal)
264 * of the custom redux operator. Note that func must be an associative operator.
271 redux(const BinaryOp& func = BinaryOp()) const function in class:Eigen::VectorwiseOp
H A DDenseBase.h460 Scalar redux(const BinaryOp& func) const;
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c1888 int (*redux)(mp_int*,mp_int*,mp_int*);
1940 redux = mp_reduce;
1945 redux = mp_reduce_2k_l;
1975 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) {
1987 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) {
2036 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2053 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2062 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2080 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2090 if ((err = redux (
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c1888 int (*redux)(mp_int*,mp_int*,mp_int*);
1940 redux = mp_reduce;
1945 redux = mp_reduce_2k_l;
1975 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) {
1987 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) {
2036 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2053 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2062 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2080 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2090 if ((err = redux (
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c1888 int (*redux)(mp_int*,mp_int*,mp_int*);
1940 redux = mp_reduce;
1945 redux = mp_reduce_2k_l;
1975 if ((err = redux (&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) {
1987 if ((err = redux (&M[x], P, &mu)) != MP_OKAY) {
2036 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2053 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2062 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2080 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
2090 if ((err = redux (
[all...]
/external/eigen/Eigen/src/Geometry/
H A DHomogeneous.h106 redux(const Func& func) const function in class:Eigen::Homogeneous
108 return func(m_matrix.redux(func), Scalar(1));
/external/eigen/test/
H A Darray_for_matrix.cpp48 VERIFY_IS_APPROX(m1.colwise().sum(), m1.colwise().redux(internal::scalar_sum_op<Scalar,Scalar>()));
H A Darray.cpp76 VERIFY_IS_APPROX(m1.colwise().sum(), m1.colwise().redux(internal::scalar_sum_op<Scalar,Scalar>()));

Completed in 204 milliseconds