Skip to content

Commit 932983b

Browse files
committed
issue/497 - captitalize op name initial
1 parent e079d9d commit 932983b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

test/infinicore/ops/add.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class AddTest(BaseOperatorTest):
7878
"""Add test with simplified test case parsing"""
7979

8080
def __init__(self):
81-
super().__init__("add")
81+
super().__init__("Add")
8282

8383
def get_test_cases(self):
8484
return _TEST_CASES

test/infinicore/ops/attention_temp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ class AttentionTest(BaseOperatorTest):
233233
"""Attention test with simplified test case parsing"""
234234

235235
def __init__(self):
236-
super().__init__("attention")
236+
super().__init__("Attention")
237237

238238
def get_test_cases(self):
239239
return _TEST_CASES

test/infinicore/ops/matmul.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class MatmulTest(BaseOperatorTest):
9494
"""Matmul test with simplified test case parsing"""
9595

9696
def __init__(self):
97-
super().__init__("matmul")
97+
super().__init__("Matmul")
9898

9999
def get_test_cases(self):
100100
return _TEST_CASES

test/infinicore/ops/rms_norm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class RMSNormTest(BaseOperatorTest):
9292
"""RMSNorm test with simplified test case parsing"""
9393

9494
def __init__(self):
95-
super().__init__("rms_norm")
95+
super().__init__("RMS_Norm")
9696

9797
def get_test_cases(self):
9898
return _TEST_CASES

0 commit comments

Comments
 (0)