We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd28c58 commit 034c015Copy full SHA for 034c015
tests/test_triton_utils.py
@@ -69,6 +69,8 @@ def test_triton_placeholder_language():
69
assert lang.constexpr is None
70
assert lang.dtype is None
71
assert lang.int64 is None
72
+ assert lang.int32 is None
73
+ assert lang.tensor is None
74
75
76
def test_triton_placeholder_language_from_parent():
vllm/triton_utils/importing.py
@@ -93,3 +93,4 @@ def __init__(self):
93
self.dtype = None
94
self.int64 = None
95
self.int32 = None
96
+ self.tensor = None
0 commit comments