Skip to content

Commit b0f6332

Browse files
committed
fix
1 parent b4bc9c9 commit b0f6332

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightllm/models/llama/triton_kernel/rmsnorm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def get_test_configs():
5353
]
5454

5555

56-
def get_static_key(x, out):
57-
return {"N": x.shape[-1], "out_dtype": str(out.dtype)}
56+
def get_static_key(x):
57+
return {"N": x.shape[-1], "out_dtype": str(x.dtype)}
5858

5959

6060
@autotune(

0 commit comments

Comments
 (0)