From e8947edccd9b2ace369ac16a71dbc50e70221106 Mon Sep 17 00:00:00 2001 From: linqingke Date: Mon, 13 Jul 2020 20:41:40 +0800 Subject: [PATCH] update max loop count --- mindspore/ccsrc/operator/ops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ccsrc/operator/ops.h b/mindspore/ccsrc/operator/ops.h index 02673d9373..0dea045a6e 100755 --- a/mindspore/ccsrc/operator/ops.h +++ b/mindspore/ccsrc/operator/ops.h @@ -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: