This commit is contained in:
雾雨魔理沙 2019-06-27 20:17:47 -07:00 коммит произвёл Wuwei Lin
Родитель 9b3e83f6a7
Коммит 6577774de9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -600,7 +600,7 @@ def test_gather_nd():
func = relay.Function([x, y], z)
x_data = np.random.uniform(size=xshape).astype("float32")
ref_res = x_data[y_data]
ref_res = x_data[tuple(y_data)]
for target, ctx in ctx_list():
for kind in ["graph", "debug"]: