Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ def can_implement(cls,
if not current_platform.is_cuda():
return False, "Machete only supported on CUDA"

if not current_platform.is_device_capability(90):
return False, "Machete requires compute capability of 90 (Hopper)"

if c.has_g_idx and\
c.partition_weight_shape[0] != c.full_weight_shape[0]:
return False, "Act reordering currently not supported by Machete, "\
Expand Down