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

  /external/tensorflow/tensorflow/python/ops/losses/
losses_impl.py 38 @tf_export(v1=["losses.Reduction"])
39 class Reduction(object):
40 """Types of loss reduction.
78 raise ValueError("Invalid Reduction Key %s." % key)
147 reduction=Reduction.SUM_BY_NONZERO_WEIGHTS):
157 reduction: Type of reduction to apply to loss.
160 Weighted loss `Tensor` of the same type as `losses`. If `reduction` is
180 Reduction.validate(reduction
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
InlineCost.cpp 149 unsigned Reduction = 0;
160 Reduction += InlineConstants::InstrCost*Instrs*(NumSucc-1)/NumSucc;
186 Reduction += InlineConstants::InstrCost;
190 Reduction += CountCodeReductionForConstant(&Inst);
194 return Reduction;
203 unsigned Reduction = 0;
207 Reduction += InlineConstants::InstrCost;
211 Reduction += CountCodeReductionForAlloca(GEP);
214 Reduction += CountCodeReductionForAlloca(BCI);
222 return Reduction;
    [all...]
  /external/tensorflow/tensorflow/python/keras/utils/
metrics_utils.py 43 class Reduction(Enum):
44 """Types of metrics reduction.
  /external/v8/src/compiler/
graph-reducer.h 30 class Reduction final {
32 explicit Reduction(Node* replacement = nullptr) : replacement_(replacement) {}
44 // language-specific reductions (e.g. reduction based on types or constant
45 // folding of low-level operators) can be integrated into the graph reduction
55 virtual Reduction Reduce(Node* node) = 0;
63 static Reduction NoChange() { return Reduction(); }
64 static Reduction Replace(Node* node) { return Reduction(node); }
65 static Reduction Changed(Node* node) { return Reduction(node);
    [all...]
escape-analysis.h 28 class Reduction {
41 std::function<void(Node*, Reduction*)> reduce, Zone* zone);
48 // Add a new root node to start reduction from. This is useful if the reducer
71 std::function<void(Node*, Reduction*)> reduce_;
99 // An object that can track the nodes in the graph whose current reduction
181 void Reduce(Node* node, Reduction* reduction);
escape-analysis.cc 65 // Keeps track of the changes to the current node during reduction.
72 typedef EffectGraphReducer::Reduction Reduction;
73 explicit ReduceScope(Node* node, Reduction* reduction)
74 : current_node_(node), reduction_(reduction) {}
78 Reduction* reduction() { return reduction_; } function in class:v8::internal::compiler::ReduceScope
82 Reduction* reduction_;
125 Scope(VariableTracker* tracker, Node* node, Reduction* reduction)
316 Reduction reduction; local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMParallelDSP.cpp 48 struct Reduction;
51 using ReductionList = SmallVector<Reduction, 8>;
84 // 'BinOpChain' and 'Reduction' are just some bookkeeping data structures.
85 // 'Reduction' contains the phi-node and accumulator statement from where we
99 struct Reduction {
103 // i.e, the reduction statement.
106 // this reduction statement.
107 Reduction (PHINode *P, Instruction *Acc) : Phi(P), AccIntAdd(Acc) { };
120 bool InsertParallelMACs(Reduction &Reduction, PMACPairList &PMACPairs)
    [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp 385 /// UDR decl used for reduction.
403 std::pair<llvm::Function *, llvm::Function *> Reduction =
417 RValue Func = RValue::get(Reduction.second);
    [all...]
CGOpenMPRuntime.cpp 425 /// \brief Atomic reduction option for kmpc_reduce.
    [all...]
  /external/v8/src/inspector/build/closure-compiler/
closure-compiler.jar 

Completed in 540 milliseconds