Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for stack_depth_ (0.45 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

       public:
        explicit IncrementStackDepth(PredicateFactory* parent) : parent_(parent) {
          parent_->stack_depth_++;
        }
    
        bool HasOverflowed() const {
          const int kMaxStackDepth = 8;
          return parent_->stack_depth_ >= kMaxStackDepth;
        }
    
        ~IncrementStackDepth() { parent_->stack_depth_--; }
    
       private:
        PredicateFactory* parent_;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/base/LazyStackTraceBenchmark.java

     * finder" implementation that might be used in a logging framework.
     */
    public class LazyStackTraceBenchmark {
      @Param({"20", "200", "2000"})
      int stackDepth;
    
      @Param({"-1", "3", "15"})
      int breakAt;
    
      int recursionCount;
    
      private static final Object duh = new Object();
    
      @Param Mode mode;
    
      enum Mode {
        LAZY_STACK_TRACE {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/base/LazyStackTraceBenchmark.java

     * finder" implementation that might be used in a logging framework.
     */
    public class LazyStackTraceBenchmark {
      @Param({"20", "200", "2000"})
      int stackDepth;
    
      @Param({"-1", "3", "15"})
      int breakAt;
    
      int recursionCount;
    
      private static final Object duh = new Object();
    
      @Param Mode mode;
    
      enum Mode {
        LAZY_STACK_TRACE {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util.cc

        std::vector<StackFrameView>* stack_trace,
        NameAttrList* encapsulating_function,
        RecursiveCompilabilityChecker::UncompilableNodesMap* uncompilable_nodes)
        const {
      auto stack_depth = stack_trace->size();
    
      if (op_filter_.allow_outside_compiled && IsInOutsideCompilationCluster(node))
        return true;
    
      if (node.IsSource() || node.IsSink()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    advance(delta){if(delta<this.distanceUntilNextPoint){this.position+=delta;this.cummulativePause+=this.stackDepth>0?delta:0;this.distanceUntilNextPoint=this.points[this.lastIndex+1].position-this.position;}else{this.position+=this.distanceUntilNextPoint;this.cummulativePause+=this.stackDepth>0?this.distanceUntilNextPoint:0;this.distanceUntilNextPoint=0;this.lastIndex++;if(this.lastIn...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top