Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IncrementStackDepth (0.15 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

      class IncrementStackDepth {
       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:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top