Browse Source

!3037 Update max loop count

Merge pull request !3037 from linqingke/mass
tags/v0.6.0-beta
mindspore-ci-bot Gitee 5 years ago
parent
commit
e6ff8dc5e0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/operator/ops.h

+ 1
- 1
mindspore/ccsrc/operator/ops.h View File

@@ -298,7 +298,7 @@ extern const PrimitivePtr kPrimIsIndexedSlices;
const char SWITCH_UNROLL_FLAG[] = "unroll_flag";
// max loop count of for statement, when loop count is less then this value, the for loop will be unrolled, otherwise it
// will be sunk(i.e. not unrolled)
const int MAX_FOR_LOOP_COUNT = 200;
const int MAX_FOR_LOOP_COUNT = 600;

class DoSignaturePrimitive : public Primitive {
public:


Loading…
Cancel
Save