Browse Source

modify repass max time limit protect

tags/v1.1.0
wangxiaotian22 3 years ago
parent
commit
ada81436ec
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ge/graph/passes/base_pass.cc

+ 1
- 1
ge/graph/passes/base_pass.cc View File

@@ -26,7 +26,7 @@

namespace ge {
namespace {
constexpr int kMaxRePassTimes = 1000;
constexpr int kMaxRePassTimes = 10000;
constexpr size_t kMaxOneInNodes = 1000;
// Each iteration, we take about 0.3k memory on the stack, we should change the recursion to loop later
constexpr int kMaxRecursiveDepth = 20;


Loading…
Cancel
Save