HomeSort by relevance Sort by last modified time
    Searched refs:VectorMap (Results 1 - 11 of 11) sorted by null

  /external/gemmlowp/public/
output_stages.h 63 VectorMap<const std::int32_t, tShape> result_offset;
64 VectorMap<const std::int32_t, tShape> result_mult_int;
198 const VectorMap<const std::int32_t, tShape>& result_offset,
199 const VectorMap<const std::int32_t, tShape>& result_mult_int,
map.h 81 // A VectorMap is a view of an existing buffer as a vector. It does not own
84 class VectorMap {
94 VectorMap() : data_(nullptr), size_(0) {}
95 VectorMap(Scalar* data, int size) : data_(data), size_(size) {}
96 VectorMap(const VectorMap& other) : data_(other.data_), size_(other.size_) {}
103 VectorMap block(int start, int len) const {
107 return VectorMap(data(start), len);
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
runtime_matvec.h 41 using VectorMap = Eigen::Map<Vector>;
43 auto x = VectorMap(x_buf, cols);
44 auto out = VectorMap(out_buf, rows);
  /external/gemmlowp/internal/
simd_wrappers_common_neon_sse.h 88 VectorMap<SrcScalarType, VectorShape::Col>> {
90 const VectorMap<SrcScalarType, VectorShape::Col>& src, int pos) {
110 VectorMap<SrcScalarType, VectorShape::Col>> {
111 using SrcObjectType = VectorMap<SrcScalarType, VectorShape::Col>;
127 VectorMap<SrcScalarType, VectorShape::Col>> {
128 using SrcObjectType = VectorMap<SrcScalarType, VectorShape::Col>;
145 VectorMap<SrcScalarType, VectorShape::Row>> {
146 using SrcObjectType = VectorMap<SrcScalarType, VectorShape::Row>;
161 VectorMap<SrcScalarType, VectorShape::Row>> {
162 using SrcObjectType = VectorMap<SrcScalarType, VectorShape::Row>
    [all...]
unpack.h 73 const VectorMap<const std::int32_t, VectorShape::Col>&
94 const VectorMap<const std::int32_t, VectorShape::Col>&
96 const VectorMap<const std::int32_t, VectorShape::Row>&
144 const VectorMap<const std::int32_t, VectorShape::Col> lhs_sums_of_each_slice(
146 const VectorMap<const std::int32_t, VectorShape::Row> rhs_sums_of_each_slice(
dispatch_gemm_shape.h 54 struct TransposeImpl<VectorMap<Scalar, Shape>> {
55 typedef VectorMap<Scalar, Shape> SrcType;
58 typedef VectorMap<Scalar, TransposedShape> DstType;
simd_wrappers.h 312 VectorMap<SrcScalarType, Shape>> {
314 using SrcObjectType = VectorMap<SrcScalarType, Shape>;
379 VectorMap<ScalarType, Shape>> {
410 VectorMap<SrcScalarType, Shape>> {
412 using SrcObjectType = VectorMap<SrcScalarType, Shape>;
  /external/gemmlowp/test/
test.cc 109 typedef VectorMap<const std::int32_t, VectorShape::Col> OffsetColMap;
110 typedef VectorMap<const std::int32_t, VectorShape::Row> OffsetRowMap;
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
optimized_ops.h 94 // Make a local VectorMap typedef allowing to map a float array
102 using VectorMap = typename std::conditional<
109 VectorMap<Scalar> MapAsVector(Scalar* data, const RuntimeShape& shape) {
111 return VectorMap<Scalar>(data, size, 1);
115 VectorMap<Scalar> MapAsVector(Scalar* data, const Dims<N>& dims) {
117 return VectorMap<Scalar>(data, size, 1);
120 // Make a local VectorMap typedef allowing to map a float array
121 // as a Eigen matrix expression. The same explanation as for VectorMap
    [all...]
  /external/tensorflow/tensorflow/lite/kernels/internal/optimized/
legacy_optimized_ops.h 79 VectorMap<Scalar> MapAsVector(Scalar* data, const Dims<N>& dims) {
81 return VectorMap<Scalar>(data, size, 1);
    [all...]
optimized_ops.h 100 // Make a local VectorMap typedef allowing to map a float array
108 using VectorMap = typename std::conditional<
115 VectorMap<Scalar> MapAsVector(Scalar* data, const RuntimeShape& shape) {
117 return VectorMap<Scalar>(data, size, 1);
120 // Make a local VectorMap typedef allowing to map a float array
121 // as a Eigen matrix expression. The same explanation as for VectorMap
    [all...]

Completed in 771 milliseconds