HomeSort by relevance Sort by last modified time
    Searched refs:VectorMap (Results 1 - 9 of 9) 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.cc 38 using VectorMap = Eigen::Map<Vector>;
40 auto x = VectorMap(x_buf, cols);
41 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 39 // Make a local VectorMap typedef allowing to map a float array
47 using VectorMap = typename std::conditional<
54 VectorMap<Scalar> MapAsVector(Scalar* data, const Dims<N>& dims) {
56 return VectorMap<Scalar>(data, size, 1);
59 // Make a local VectorMap typedef allowing to map a float array
60 // as a Eigen matrix expression. The same explanation as for VectorMap
532 typedef gemmlowp::VectorMap<const int32, gemmlowp::VectorShape::Col>
    [all...]

Completed in 162 milliseconds