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

  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 35 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
539 // ones:
547 * it is redundant to pass \a rows and \a cols as arguments, so Ones() should be used
553 * \sa Ones(), Ones(Index), isOnes(), class Ones
557 DenseBase<Derived>::Ones(Index rows, Index cols)
570 * it is redundant to pass \a size as argument, so Ones() should be used
576 * \sa Ones(), Ones(Index,Index), isOnes(), class One
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
sdca_ops_test.cc 75 Node* Ones(Graph* const g, const int n) {
199 Node* const weights = Ones(g, num_examples);
  /external/tensorflow/tensorflow/python/ops/
init_ops.py 121 @tf_export(v1=["initializers.ones", "ones_initializer"])
122 @deprecation.deprecated_endpoints("initializers.ones", "ones_initializer")
123 class Ones(Initializer):
136 return array_ops.ones(shape, dtype)
    [all...]
init_ops_v2.py 102 class Ones(Initializer):
119 return array_ops.ones(shape, dtype)
615 ones_initializer = Ones
812 one = ones = Ones
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
APInt.h 492 /// \returns true if this APInt value is a sequence of \param numBits ones
499 unsigned Ones = countTrailingOnesSlowCase();
500 return (numBits == Ones) &&
501 ((Ones + countLeadingZerosSlowCase()) == BitWidth);
504 /// \returns true if this APInt is a non-empty sequence of ones starting at
510 unsigned Ones = countTrailingOnesSlowCase();
511 return (Ones > 0) && ((Ones + countLeadingZerosSlowCase()) == BitWidth);
514 /// Return true if this APInt value contains a sequence of ones with
519 unsigned Ones = countPopulationSlowCase()
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 823 SDValue Ones = CurDAG->getTargetConstant(MV, dl, MVT::i64);
825 MVT::i64, Ones);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp 683 // turn on ones that can be effectively codegen'd.
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 653 // turn on ones that can be effectively codegen'd.
712 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
    [all...]

Completed in 381 milliseconds