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

  /external/tensorflow/tensorflow/python/ops/losses/
losses_impl.py 34 @tf_export("losses.Reduction")
35 class Reduction(object):
36 """Types of loss reduction.
160 reduction=Reduction.SUM_BY_NONZERO_WEIGHTS):
170 reduction: Type of reduction to apply to loss.
173 Weighted loss `Tensor` of the same type as `losses`. If `reduction` is
188 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/v8/src/compiler/
graph-reducer.h 28 class Reduction final {
30 explicit Reduction(Node* replacement = nullptr) : replacement_(replacement) {}
42 // language-specific reductions (e.g. reduction based on types or constant
43 // folding of low-level operators) can be integrated into the graph reduction
50 virtual Reduction Reduce(Node* node) = 0;
58 static Reduction NoChange() { return Reduction(); }
59 static Reduction Replace(Node* node) { return Reduction(node); }
60 static Reduction Changed(Node* node) { return Reduction(node);
    [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 317 milliseconds