CUDA error: device-side assert triggered CUDA kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect. For debugging consider passing CUDA_LAUNCH_BLOCKING=1. Compile with TORCH_USE_CUDA_DSA
to enable device-side assertions.
#1220
Closed
hotcolaava
started this conversation in
Bad Case
Replies: 1 comment 2 replies
-
有超过词表外的词语,检查一下你 的输入后tokenize是不是在词表的范围内 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
执行到model.chat时报错, 是什么原因导致的?
代码如下:
tokenizer = AutoTokenizer.from_pretrained("c:\chatglm3-6b-128k", trust_remote_code=True)
model = AutoModel.from_pretrained("c:\chatglm3-6b-128k",trust_remote_code=True).quantize(4).cuda()
prompt_xshb="""从上文中,提取指定信息,包括:"吸收合并方"、"被吸收合并方"、"方案详情"
、"换股比例"、"定价基准日"、"现金选择权行权价格"、"现金选择权是否有调价机制"、"审批程序"等类型的
信息,输出为json格式"""
prompt_yy="""从上文中,提取指定信息,包括:"收购人"、"要约类型"、"要约价格"
、"要约数量"、"要约方案"、"要约前置条件"、"审批流程"、"要约期限"、"申报代码"等类型的
信息,输出为json格式"""
filename = 'D:\project\ChatGLM3\test\yy_sim.txt'
with open(filename, 'r', encoding='gbk') as file:
content = file.read()
print(len(content))
split_contents= content[0: 108000]
input ='{}\n\n{}'.format(split_contents, prompt_yy)
#print(input)
response, history = model.chat(tokenizer, input,history=[],top_p=1,temperature=0.01)
详细异常信息如下:
C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [64,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [65,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [66,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [67,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [68,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [69,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [70,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [71,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [72,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [73,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [74,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [75,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [76,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [77,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [78,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [79,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [80,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [81,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [82,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [83,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [84,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [85,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [86,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [87,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [88,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [89,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [90,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [91,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [92,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [93,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [94,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1040,0,0], thread: [95,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [64,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [65,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [66,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [67,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [68,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [69,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [70,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [71,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [72,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [73,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [74,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [75,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [76,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [77,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [78,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [79,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [80,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [81,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [82,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [83,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [84,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [85,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [86,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [87,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [88,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [89,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [90,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [91,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [92,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [93,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [94,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [95,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [96,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [97,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [98,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [99,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [100,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [101,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [102,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [103,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [104,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [105,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [106,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [107,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [108,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [109,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [110,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [111,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [112,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [113,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [114,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [115,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [116,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [117,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [118,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [119,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [120,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [121,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [122,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [123,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [124,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [125,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [126,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [127,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [32,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [33,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [34,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [35,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [36,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [37,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [38,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [39,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [40,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [41,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [42,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [43,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [44,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [45,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [46,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [47,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [48,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [49,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [50,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [51,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [52,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [53,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [54,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [55,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [56,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [57,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [58,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [59,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [60,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [61,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [62,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [63,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [0,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [1,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [2,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [3,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [4,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [5,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [6,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [7,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [8,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [9,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [10,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [11,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [12,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [13,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [14,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [15,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [16,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [17,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [18,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [19,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [20,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [21,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [22,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [23,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [24,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [25,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [26,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [27,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [28,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [29,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [30,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1098,0,0], thread: [31,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [32,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [33,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [34,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [35,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [36,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [37,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [38,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [39,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [40,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [41,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [42,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [43,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [44,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [45,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [46,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [47,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [48,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [49,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [50,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [51,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [52,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [53,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [54,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [55,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [56,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [57,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [58,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [59,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [60,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [61,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [62,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [63,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [0,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [1,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [2,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [3,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [4,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [5,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [6,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [7,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [8,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [9,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [10,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [11,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [12,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [13,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [14,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [15,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [16,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [17,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [18,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [19,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [20,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [21,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [22,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [23,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [24,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [25,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [26,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [27,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [28,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [29,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [30,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\cuda\IndexKernel.cu:92: block: [1115,0,0], thread: [31,0,0] Assertion
-sizes[i] <= index && index < sizes[i] && "index out of bounds"
failed.Traceback (most recent call last):
File "D:\project\ChatGLM3\test\xshb_test.py", line 29, in
response, history = model.chat(tokenizer, input)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\utils_contextlib.py", line 115, in decorate_context
return func(*args, **kwargs)
File "C:\Users\hotcola.cache\huggingface\modules\transformers_modules\chatglm3-6b-128k\modeling_chatglm.py", line 1067, in chat
outputs = self.generate(**inputs, **gen_kwargs, eos_token_id=eos_token_id)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\utils_contextlib.py", line 115, in decorate_context
return func(*args, **kwargs)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\transformers\generation\utils.py", line 1736, in generate
result = self._sample(
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\transformers\generation\utils.py", line 2375, in _sample
outputs = self(
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1518, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1527, in _call_impl
return forward_call(*args, **kwargs)
File "C:\Users\hotcola.cache\huggingface\modules\transformers_modules\chatglm3-6b-128k\modeling_chatglm.py", line 966, in forward
transformer_outputs = self.transformer(
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1518, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1527, in _call_impl
return forward_call(*args, **kwargs)
File "C:\Users\hotcola.cache\huggingface\modules\transformers_modules\chatglm3-6b-128k\modeling_chatglm.py", line 853, in forward
hidden_states, presents, all_hidden_states, all_self_attentions = self.encoder(
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1518, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1527, in _call_impl
return forward_call(*args, **kwargs)
File "C:\Users\hotcola.cache\huggingface\modules\transformers_modules\chatglm3-6b-128k\modeling_chatglm.py", line 652, in forward
layer_ret = layer(
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1518, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1527, in _call_impl
return forward_call(*args, **kwargs)
File "C:\Users\hotcola.cache\huggingface\modules\transformers_modules\chatglm3-6b-128k\modeling_chatglm.py", line 558, in forward
layernorm_output = self.input_layernorm(hidden_states)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1518, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
File "D:\ProgramData\miniconda3\envs\llm\lib\site-packages\torch\nn\modules\module.py", line 1527, in _call_impl
return forward_call(*args, **kwargs)
File "C:\Users\hotcola.cache\huggingface\modules\transformers_modules\chatglm3-6b-128k\modeling_chatglm.py", line 191, in forward
variance = hidden_states.to(torch.float32).pow(2).mean(-1, keepdim=True)
RuntimeError: CUDA error: device-side assert triggered
CUDA kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect.
For debugging consider passing CUDA_LAUNCH_BLOCKING=1.
Compile with
TORCH_USE_CUDA_DSA
to enable device-side assertions.Beta Was this translation helpful? Give feedback.
All reactions