Skip to content

Commit 3f3d78b

Browse files
committed
Rename ninetoothed.fuse to ninetoothed.fuser
1 parent acbf158 commit 3f3d78b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

add_add.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def ninetoothed_add_add(a, b, c, use_fused=True):
1212
return ninetoothed_add_add_unfused(a, b, c)
1313

1414

15-
@torch.compile(backend=ninetoothed.fuse)
15+
@torch.compile(backend=ninetoothed.fuser)
1616
def ninetoothed_add_add_fused(a, b, c):
1717
return ninetoothed_add_add_unfused(a, b, c)
1818

add_add_add.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def ninetoothed_add_add_add(a, b, c, d, use_fused=True):
1212
return ninetoothed_add_add_add_unfused(a, b, c, d)
1313

1414

15-
@torch.compile(backend=ninetoothed.fuse)
15+
@torch.compile(backend=ninetoothed.fuser)
1616
def ninetoothed_add_add_add_fused(a, b, c, d):
1717
return ninetoothed_add_add_add_unfused(a, b, c, d)
1818

softmax_mm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def ninetoothed_softmax_mm(a, b, use_fused=True):
1212
return ninetoothed_softmax_mm_unfused(a, b)
1313

1414

15-
@torch.compile(backend=ninetoothed.fuse)
15+
@torch.compile(backend=ninetoothed.fuser)
1616
def ninetoothed_softmax_mm_fused(a, b):
1717
return ninetoothed_softmax_mm_unfused(a, b)
1818

0 commit comments

Comments
 (0)