Skip to content

Commit 5c6d354

Browse files
alexbadenpytorchmergebot
authored andcommitted
[Inductor] Support Triton AttrsDescriptor cls field (pytorch#139193)
Fixes pytorch#139179 Adding corresponding changes to triton-lang/triton#4888 Pull Request resolved: pytorch#139193 Approved by: https://github.com/bertmaher
1 parent 180d283 commit 5c6d354

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

torch/_inductor/runtime/hints.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ def AttrsDescriptorWrapper(
5252
}
5353

5454
# Instantiate AttrsDescriptor with the prepared arguments
55-
res = AttrsDescriptor.from_dict(kwargs)
55+
res = AttrsDescriptor.from_dict(
56+
{"arg_properties": kwargs, "cls": AttrsDescriptor.__name__}
57+
)
5658
assert res.property_values["tt.divisibility"] == 16
5759
assert res.property_values["tt.equal_to"] == 1
5860
return res

0 commit comments

Comments
 (0)