!27775 Fix Slice node's location incorrect

Merge pull request !27775 from huanghui/fix-Slice-no-location
This commit is contained in:
i-robot 2021-12-17 06:35:26 +00:00 committed by Gitee
commit 3121a317ec
2 changed files with 23 additions and 4 deletions

View File

@ -789,8 +789,8 @@ class Parser:
end_node = node
if err_exit == 0:
if hasattr(start_node, "lineno") and \
hasattr(end_node, "col_offset"):
if hasattr(start_node, "first_token") and \
hasattr(end_node, "last_token"):
start_lineno, start_colno = start_node.first_token.start
end_lineno, end_colno = end_node.last_token.end
start_lineno += self.line_offset - 1

View File

@ -16,6 +16,7 @@
import os
import shutil
import subprocess
import pytest
import numpy as np
import mindspore as ms
from mindspore import nn
@ -48,7 +49,7 @@ def test_ms_function():
context.set_context(save_graphs=True, save_graphs_path="ir_dump_path")
input1 = np.random.randn(5, 5)
add(Tensor(input1, ms.float32))
result = find_files("./ir_dump_path/*validate*.ir", "test_debug_info.py(45)/ return x + 1/")
result = find_files("./ir_dump_path/*validate*.ir", "test_debug_info.py(46)/ return x + 1/")
assert result == '2'
remove_path("./ir_dump_path/")
@ -66,6 +67,24 @@ def test_cell_ms_function():
input1 = np.random.randn(5, 5)
net = Net()
net(Tensor(input1, ms.float32))
result = find_files("./ir_dump_path/*validate*.ir", "test_debug_info.py(62)/ return x/")
result = find_files("./ir_dump_path/*validate*.ir", "test_debug_info.py(63)/ return x/")
assert result == '1'
remove_path("./ir_dump_path/")
def test_parse_slice_location():
"""
Feature: parse location.
Description: Test Slice node will be parsed with correct location.
Expectation: TypeError.
"""
class Net(nn.Cell):
def construct(self, x):
return x[1.2:]
context.set_context(mode=context.GRAPH_MODE)
input1 = Tensor((1, 2, 3))
net = Net()
with pytest.raises(TypeError) as ex:
net(input1)
assert "return x[1.2:]" in str(ex.value)