HomeSort by relevance Sort by last modified time
    Searched defs:Scalars (Results 1 - 9 of 9) sorted by null

  /external/tensorflow/tensorflow/core/grappler/verifiers/
structure_verifier_test.cc 44 Status Scalars(shape_inference::InferenceContext* c) {
51 REGISTER_OP("TestParams").Output("o: float").SetShapeFn(Scalars);
55 .SetShapeFn(Scalars);
60 .SetShapeFn(Scalars);
  /external/tensorflow/tensorflow/core/graph/
graph_constructor_test.cc 173 Status Scalars(shape_inference::InferenceContext* c) {
181 REGISTER_OP("TestParams").Output("o: float").SetShapeFn(Scalars);
185 .SetShapeFn(Scalars);
190 .SetShapeFn(Scalars);
196 .SetShapeFn(Scalars);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 633 /// context means the creation of vectors from a group of scalars.
646 /// \returns a vector from a collection of scalars in \p VL.
668 /// \returns true if the scalars in VL are equal to this entry.
670 if (VL.size() == Scalars.size())
671 return std::equal(VL.begin(), VL.end(), Scalars.begin());
675 [this](Value *V, unsigned Idx) { return V == Scalars[Idx]; });
678 /// A vector of scalars.
679 ValueList Scalars;
681 /// The Scalars are vectorized into this value. It is initialized to Null.
713 Last->Scalars.insert(Last->Scalars.begin(), VL.begin(), VL.end())
    [all...]
LoopVectorize.cpp 345 /// This class performs the widening of scalars into vectors, or multiple
346 /// scalars. This class also implements the following features:
350 /// * Scalarization (implementation using scalars) of un-vectorizable
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 415 /// context means the creation of vectors from a group of scalars.
427 /// \returns a vector from a collection of scalars in \p VL.
445 TreeEntry() : Scalars(), VectorizedValue(nullptr),
448 /// \returns true if the scalars in VL are equal to this entry.
450 assert(VL.size() == Scalars.size() && "Invalid size");
451 return std::equal(VL.begin(), VL.end(), Scalars.begin());
454 /// A vector of scalars.
455 ValueList Scalars;
457 /// The Scalars are vectorized into this value. It is initialized to Null.
469 Last->Scalars.insert(Last->Scalars.begin(), VL.begin(), VL.end())
    [all...]
LoopVectorize.cpp 275 /// This class performs the widening of scalars into vectors, or multiple
276 /// scalars. This class also implements the following features:
280 /// * Scalarization (implementation using scalars) of un-vectorizable
386 /// of scalars. If \p IfPredicateStore is true we need to 'hide' each
573 /// Maps scalars to widened vectors.
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 157 milliseconds