Browse Source

!1447 remove unused variable

Merge pull request !1447 from yihuaijie/master
tags/v0.5.0-beta
mindspore-ci-bot Gitee 5 years ago
parent
commit
93fc82b8f7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/ut/python/parallel/test_loop_two_matmul.py

+ 1
- 1
tests/ut/python/parallel/test_loop_two_matmul.py View File

@@ -49,7 +49,7 @@ def loop_config(size):
config_list = []
num = 1
split_list = [num]
for i in range(int(math.log2(size))):
for _ in range(int(math.log2(size))):
num = num * 2
split_list.append(num)



Loading…
Cancel
Save