Home
last modified time | relevance | path

Searched refs:MatrixMap (Results 1 – 25 of 51) sorted by relevance

123

/dports/math/gemmlowp/gemmlowp-dc69acd/public/
H A Dgemmlowp.h35 const MatrixMap<const InputScalar, LhsOrder>& lhs, in GemmWithOutputPipelinePC()
36 const MatrixMap<const InputScalar, RhsOrder>& rhs, in GemmWithOutputPipelinePC()
37 MatrixMap<OutputScalar, ResultOrder>* result, in GemmWithOutputPipelinePC()
54 const MatrixMap<const InputScalar, LhsOrder>& lhs, in GemmWithOutputPipeline()
55 const MatrixMap<const InputScalar, RhsOrder>& rhs, in GemmWithOutputPipeline()
56 MatrixMap<OutputScalar, ResultOrder>* result, in GemmWithOutputPipeline()
75 const MatrixMap<const Scalar, LhsOrder>& lhs, in Gemm()
76 const MatrixMap<const Scalar, RhsOrder>& rhs, in Gemm()
77 MatrixMap<Scalar, ResultOrder>* result, int lhs_offset, in Gemm()
H A Dmap.h32 class MatrixMap {
42 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {} in MatrixMap() function
43 MatrixMap(Scalar* data, int rows, int cols) in MatrixMap() function
48 MatrixMap(Scalar* data, int rows, int cols, int stride) in MatrixMap() function
50 MatrixMap(const MatrixMap& other) in MatrixMap() function
67 MatrixMap block(int start_row, int start_col, int block_rows, in block()
74 return MatrixMap(data(start_row, start_col), block_rows, block_cols, in block()
/dports/math/giacxcas/giac-1.6.0/src/
H A DTmpFGLM.C83 map<PPMonoidElem, struct MatrixMapEntry>::iterator entry = MatrixMap.find(PP(m)); in UpdateMatrixMap()
85 if (entry == MatrixMap.end()) in UpdateMatrixMap()
93 MatrixMap.insert(make_pair(PP(m), NewEntry)); in UpdateMatrixMap()
140 …map<PPMonoidElem, struct MatrixMapEntry> MatrixMap; // Used to create the matrices for the linear … in FGLMBasisConversion() local
164 map<PPMonoidElem, struct MatrixMapEntry>::iterator entry = MatrixMap.find(PP(m)); in FGLMBasisConversion()
167 if (entry == MatrixMap.end()) in FGLMBasisConversion()
170 UpdateMatrixMap(MatrixMap, NumCols, NewQB, h, t); in FGLMBasisConversion()
187 matrix M = NewDenseMat(K, MatrixMap.size(), NumCols), in FGLMBasisConversion()
188 b = NewDenseMat(K, MatrixMap.size(), 1); in FGLMBasisConversion()
191 …ap<PPMonoidElem, struct MatrixMapEntry>::iterator entry = MatrixMap.begin(); entry != MatrixMap.en… in FGLMBasisConversion()
[all …]
/dports/graphics/blender/blender-2.91.0/extern/quadriflow/3rd/lemon-1.3.1/lemon/bits/
H A Dtraits.h263 template <typename MatrixMap, typename Enable = void>
267 typedef typename MatrixMap::FirstKey FirstKey;
268 typedef typename MatrixMap::SecondKey SecondKey;
269 typedef typename MatrixMap::Value Value;
275 template <typename MatrixMap>
277 MatrixMap, typename enable_if<typename MatrixMap::ReferenceMapTag,
282 typedef typename MatrixMap::FirstKey FirstKey;
283 typedef typename MatrixMap::SecondKey SecondKey;
284 typedef typename MatrixMap::Value Value;
287 typedef typename MatrixMap::Reference ReturnValue;
[all …]
/dports/math/lemon/lemon-1.3.1/lemon/bits/
H A Dtraits.h263 template <typename MatrixMap, typename Enable = void>
267 typedef typename MatrixMap::FirstKey FirstKey;
268 typedef typename MatrixMap::SecondKey SecondKey;
269 typedef typename MatrixMap::Value Value;
275 template <typename MatrixMap>
277 MatrixMap, typename enable_if<typename MatrixMap::ReferenceMapTag,
282 typedef typename MatrixMap::FirstKey FirstKey;
283 typedef typename MatrixMap::SecondKey SecondKey;
284 typedef typename MatrixMap::Value Value;
287 typedef typename MatrixMap::Reference ReturnValue;
[all …]
/dports/misc/openmvg/openMVG-2.0/src/third_party/lemon/lemon/bits/
H A Dtraits.h263 template <typename MatrixMap, typename Enable = void>
267 typedef typename MatrixMap::FirstKey FirstKey;
268 typedef typename MatrixMap::SecondKey SecondKey;
269 typedef typename MatrixMap::Value Value;
275 template <typename MatrixMap>
277 MatrixMap, typename enable_if<typename MatrixMap::ReferenceMapTag,
282 typedef typename MatrixMap::FirstKey FirstKey;
283 typedef typename MatrixMap::SecondKey SecondKey;
284 typedef typename MatrixMap::Value Value;
287 typedef typename MatrixMap::Reference ReturnValue;
[all …]
/dports/biology/cufflinks/cufflinks-2.2.1-89-gdc3b0cb/src/lemon/bits/
H A Dtraits.h247 template <typename MatrixMap, typename Enable = void>
251 typedef typename MatrixMap::FirstKey FirstKey;
252 typedef typename MatrixMap::SecondKey SecondKey;
253 typedef typename MatrixMap::Value Value;
259 template <typename MatrixMap>
261 MatrixMap, typename enable_if<typename MatrixMap::ReferenceMapTag,
266 typedef typename MatrixMap::FirstKey FirstKey;
267 typedef typename MatrixMap::SecondKey SecondKey;
268 typedef typename MatrixMap::Value Value;
271 typedef typename MatrixMap::Reference ReturnValue;
[all …]
/dports/astro/p5-Starlink-AST/Starlink-AST-1.05/ast/
H A Dmatrixmap.h229 astPROTO_CHECK(MatrixMap) /* Check class membership */
230 astPROTO_ISA(MatrixMap) /* Test class membership */
274 #define astCheckMatrixMap(this) astINVOKE_CHECK(MatrixMap,this,0)
275 #define astVerifyMatrixMap(this) astINVOKE_CHECK(MatrixMap,this,1)
278 #define astIsAMatrixMap(this) astINVOKE_ISA(MatrixMap,this)
/dports/math/gemmlowp/gemmlowp-dc69acd/doc/
H A Dquantization_example.cc28 const gemmlowp::MatrixMap<tScalar, tOrder>& m) { in operator <<()
43 void FindMinMax(const gemmlowp::MatrixMap<float, tOrder>& m, float* min, in FindMinMax()
117 const gemmlowp::MatrixMap<const float, tLhsOrder>& lhs, in FloatMatrixMultiplication()
118 const gemmlowp::MatrixMap<const float, tRhsOrder>& rhs, in FloatMatrixMultiplication()
119 gemmlowp::MatrixMap<float, tResultOrder>* result) { in FloatMatrixMultiplication()
165 gemmlowp::MatrixMap<const tScalar, tOrder> ConstMap() const { in ConstMap()
166 return gemmlowp::MatrixMap<const tScalar, tOrder>( in ConstMap()
169 gemmlowp::MatrixMap<tScalar, tOrder> Map() { in Map()
170 return gemmlowp::MatrixMap<tScalar, tOrder>( in Map()
178 gemmlowp::MatrixMap<tScalar, tOrder> matrix_map;
H A Dpublic.md36 const MatrixMap<const InputScalar, LhsOrder>& lhs,
37 const MatrixMap<const InputScalar, RhsOrder>& rhs,
38 MatrixMap<OutputScalar, ResultOrder>* result,
87 `MatrixMap` objects, mapping external buffers as matrices, not owning data.
89 * `result`: pointer to the destination `MatrixMap` object, which must be
/dports/science/kst2/kst-plot-38eddb5322a1d557f9d86ea95d456d76272941e3/src/libkstmath/
H A Drelation.h157 const MatrixMap& inputMatrices() const { return _inputMatrices; } in inputMatrices()
158 const MatrixMap& outputMatrices() const { return _outputMatrices; } in outputMatrices()
159 MatrixMap& inputMatrices() { return _inputMatrices; } in inputMatrices()
160 MatrixMap& outputMatrices() { return _outputMatrices; } in outputMatrices()
191 MatrixMap _inputMatrices;
192 MatrixMap _outputMatrices;
H A Ddataobject.h94 const MatrixMap& inputMatrices() const { return _inputMatrices; } in inputMatrices()
95 const MatrixMap& outputMatrices() const { return _outputMatrices; } in outputMatrices()
96 MatrixMap& inputMatrices() { return _inputMatrices; } in inputMatrices()
97 MatrixMap& outputMatrices() { return _outputMatrices; } in outputMatrices()
175 MatrixMap _inputMatrices;
176 MatrixMap _outputMatrices;
H A Drelation.cpp262 …for (MatrixMap::ConstIterator i = _outputMatrices.constBegin(); i != _outputMatrices.constEnd(); +… in unlockInputsAndOutputs()
272 …for (MatrixMap::ConstIterator i = _inputMatrices.constBegin(); i != _inputMatrices.constEnd(); ++i… in unlockInputsAndOutputs()
371 …for (MatrixMap::ConstIterator j = _inputMatrices.constBegin(); j != _inputMatrices.constEnd(); ++j… in uses()
415 …for (MatrixMap::Iterator j = obj->outputMatrices().begin(); j != obj->outputMatrices().end(); ++j)… in uses()
416 …for (MatrixMap::ConstIterator k = _inputMatrices.constBegin(); k != _inputMatrices.constEnd(); ++k… in uses()
524 for (MatrixMap::Iterator j = _inputMatrices.begin(); j != _inputMatrices.end(); ++j) { in replaceInput()
/dports/math/gemmlowp/gemmlowp-dc69acd/internal/
H A Ddispatch_gemm_shape.h65 struct TransposeImpl<MatrixMap<Scalar, Order>> {
66 typedef MatrixMap<Scalar, Order> SrcType;
68 typedef MatrixMap<Scalar, TransposedOrder> DstType;
172 const MatrixMap<const InputScalar, LhsOrder>& lhs,
173 const MatrixMap<const InputScalar, RhsOrder>& rhs,
174 MatrixMap<OutputScalar, ResultOrder>* result,
H A Dsingle_thread_gemm.h68 const MatrixMap<const InputScalar, LhsOrder>& lhs, in SingleThreadGemm()
69 const MatrixMap<const InputScalar, RhsOrder>& rhs, in SingleThreadGemm()
70 MatrixMap<OutputScalar, ResultOrder>* result, in SingleThreadGemm()
H A Dmulti_thread_gemm.h470 const MatrixMap<const InputScalar, LhsOrder>& _lhs, in GemmWithPackedRhsTask()
472 MatrixMap<OutputScalar, ResultOrder>* _result, in GemmWithPackedRhsTask()
528 const MatrixMap<const InputScalar, LhsOrder> lhs;
530 MatrixMap<OutputScalar, ResultOrder> result;
637 const MatrixMap<const InputScalar, LhsOrder>& lhs, in MultiThreadGemm()
638 const MatrixMap<const InputScalar, RhsOrder>& rhs, in MultiThreadGemm()
639 MatrixMap<OutputScalar, ResultOrder>* result, in MultiThreadGemm()
H A Dunpack.h40 MatrixMap<std::int32_t, MapOrder::ColMajor> Map() { in Map()
41 return MatrixMap<std::int32_t, MapOrder::ColMajor>( in Map()
46 MatrixMap<const std::int32_t, MapOrder::ColMajor> Map() const { in Map()
47 return MatrixMap<const std::int32_t, MapOrder::ColMajor>( in Map()
182 MatrixMap<DstScalarType, MapOrder::ColMajor> dst_colmajor_map( in UnpackResult()
H A Dsimd_wrappers_common_neon_sse.h26 MatrixMap<SrcScalarType, MapOrder::ColMajor>> {
28 const MatrixMap<SrcScalarType, MapOrder::ColMajor>& src, int row,
40 MatrixMap<SrcScalarType, MapOrder::ColMajor>> {
42 const MatrixMap<SrcScalarType, MapOrder::ColMajor>& src, int row,
55 MatrixMap<SrcScalarType, MapOrder::ColMajor>> {
57 const MatrixMap<SrcScalarType, MapOrder::ColMajor>& src, int row,
71 MatrixMap<SrcScalarType, MapOrder::ColMajor>> {
73 const MatrixMap<SrcScalarType, MapOrder::ColMajor>& src, int row,
/dports/math/gemmlowp/gemmlowp-dc69acd/test/
H A Dtest.cc131 const MatrixMap<const Scalar, LhsOrder>& lhs, in Gemm()
132 const MatrixMap<const Scalar, RhsOrder>& rhs, in Gemm()
133 MatrixMap<Scalar, ResultOrder>* result, int lhs_offset, in Gemm()
171 const MatrixMap<const Scalar, LhsOrder>& lhs, in Gemm()
172 const MatrixMap<const Scalar, RhsOrder>& rhs, in Gemm()
173 MatrixMap<Scalar, ResultOrder>* result, int lhs_offset, in Gemm()
208 const MatrixMap<const Scalar, LhsOrder>& lhs, in Gemm()
209 const MatrixMap<const Scalar, RhsOrder>& rhs, in Gemm()
243 const MatrixMap<const Scalar, RhsOrder>& rhs, in Gemm()
268 const MatrixMap<const Scalar, LhsOrder>& lhs, in Gemm()
[all …]
H A Dtest.h47 class Matrix : public MatrixMap<tScalar, tOrder> {
49 typedef MatrixMap<tScalar, tOrder> Map;
50 typedef MatrixMap<const tScalar, tOrder> ConstMap;
/dports/math/gemmlowp/gemmlowp-dc69acd/eight_bit_int_gemm/
H A Deight_bit_int_gemm.cc88 MatrixMap<const std::uint8_t, LhsOrder> lhs(a, m, k, lda); in EightBitIntGemmImpl()
89 MatrixMap<const std::uint8_t, RhsOrder> rhs(b, k, n, ldb); in EightBitIntGemmImpl()
90 MatrixMap<std::uint8_t, ResultOrder> result(c, m, n, ldc); in EightBitIntGemmImpl()
123 MatrixMap<const std::uint8_t, LhsOrder> lhs(a, m, k, lda); in EightBitIntGemmInt32Impl()
124 MatrixMap<const std::uint8_t, RhsOrder> rhs(b, k, n, ldb); in EightBitIntGemmInt32Impl()
125 MatrixMap<std::int32_t, ResultOrder> result(c, m, n, ldc); in EightBitIntGemmInt32Impl()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/src/util/unit/
H A Dteuchos_eigen_conversion.cpp17 using MatrixMap = Eigen::Map<Eigen::MatrixXd>; typedef
84 MatrixMap eigen_mat(teuchos_mat.values(),num_rows,num_cols); in TEUCHOS_UNIT_TEST()
/dports/science/ALPSCore/ALPSCore-2.2.0/utilities/include/alps/numeric/tensors/
H A Dtensor_base.hpp61 using MatrixMap = Eigen::Map < Eigen::Matrix < X, Rows, Cols, Eigen::RowMajor > >; typedef
365 MatrixMap < T, 1, Eigen::Dynamic > M1(&storage_.data(0), storage_.size()); in operator +=()
377 MatrixMap < T, 1, Eigen::Dynamic > M1(&storage_.data(0), storage_.size()); in operator -=()
394 MatrixMap < T > M3(&x.storage().data(0), x.shape()[0], x.shape()[1]); in dot()
402 MatrixMap < T > matrix() { in matrix()
404 return MatrixMap < T >(&storage().data(0), shape_[0], shape_[1]); in matrix()
/dports/math/mfem/mfem-4.3/mesh/
H A Dncmesh.hpp84 struct MatrixMap; // for internal use
654 MatrixMap &matrix_map);
657 MatrixMap &matrix_map);
659 MatrixMap &matrix_map);
661 int level, MatrixMap &matrix_map);
920 friend struct MatrixMap;
/dports/games/battletanks/btanks-0.9.8083/engine/tmx/
H A Dmap.cpp72 MatrixMap::iterator i = _imp_map.find(MatrixMap::key_type(box, only_pierceable)); in getMatrix()
80 …std::pair<MatrixMap::iterator, bool> r = _imp_map.insert(MatrixMap::value_type(MatrixMap::key_type… in getMatrix()
415 for(MatrixMap::iterator i = _imp_map.begin(); i != _imp_map.end(); ++i) { in updateMatrix()
568 for(MatrixMap::const_iterator i = _imp_map.begin(); i != _imp_map.end(); ++i) { in generateMatrixes()
593 for(MatrixMap::const_iterator i = _imp_map.begin(); i != _imp_map.end(); ++i) { in get_zBoxes()
603 MatrixMap::const_iterator map = _imp_map.find(MatrixMap::key_type(box, false)); in getSurroundings()
609MatrixMap::const_iterator pmap = (obj->piercing)?_imp_map.find(MatrixMap::key_type(box, true)):_im… in getSurroundings()
1161 for(MatrixMap::iterator i = _imp_map.begin(); i != _imp_map.end(); ++i) in invalidateTile()

123