-
Notifications
You must be signed in to change notification settings - Fork 60
issue/566: 添加 Python 算子测试 #589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ma-hang
wants to merge
1
commit into
main
Choose a base branch
from
issue/566
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,99 @@ | ||
| import sys | ||
| import os | ||
|
|
||
| sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..")) | ||
|
|
||
| import torch | ||
| import infinicore | ||
| from framework.base import BaseOperatorTest, TensorSpec, TestCase | ||
| from framework.runner import GenericTestRunner | ||
|
|
||
| # Test cases format: (in_shape, in_strides_or_None) | ||
| _TEST_CASES_DATA = [ | ||
| ((2, 3), None), | ||
| ((1, 4, 8), (32, 8, 1)), | ||
| ((3, 2, 5, 7), None), | ||
| ((2, 1, 16), None), | ||
| ((1, 8, 9, 11), (792, 99, 11, 1)), | ||
| ((2, 6, 10), None), | ||
| ] | ||
|
|
||
| _TOLERANCE_MAP = { | ||
| infinicore.float16: {"atol": 0.0, "rtol": 0.0}, | ||
| infinicore.float32: {"atol": 0.0, "rtol": 0.0}, | ||
| } | ||
| _TENSOR_DTYPES = [infinicore.float16, infinicore.float32] | ||
|
|
||
|
|
||
| def parse_test_cases(): | ||
| cases = [] | ||
| for shape, strides in _TEST_CASES_DATA: | ||
| for dtype in _TENSOR_DTYPES: | ||
| tol = _TOLERANCE_MAP[dtype] | ||
| in_spec = TensorSpec.from_tensor(shape, strides, dtype) | ||
|
|
||
| # Out-of-place | ||
| cases.append( | ||
| TestCase( | ||
| inputs=[in_spec], | ||
| kwargs={}, | ||
| output_spec=None, | ||
| comparison_target=None, | ||
| tolerance=tol, | ||
| description="Abs - OUT_OF_PLACE", | ||
| ) | ||
| ) | ||
|
|
||
| # Explicit out | ||
| out_spec = TensorSpec.from_tensor(shape, None, dtype) | ||
| cases.append( | ||
| TestCase( | ||
| inputs=[in_spec], | ||
| kwargs={}, | ||
| output_spec=out_spec, | ||
| comparison_target="out", | ||
| tolerance=tol, | ||
| description="Abs - INPLACE(out)", | ||
| ) | ||
| ) | ||
|
|
||
| # In-place on input (out=0) | ||
| cases.append( | ||
| TestCase( | ||
| inputs=[in_spec], | ||
| kwargs={"out": 0}, | ||
| output_spec=None, | ||
| comparison_target=0, | ||
| tolerance=tol, | ||
| description="Abs - INPLACE(a)", | ||
| ) | ||
| ) | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 测试框架优化,然后进行对应更新 |
||
| return cases | ||
|
|
||
|
|
||
| class OpTest(BaseOperatorTest): | ||
| """Abs operator test with simplified implementation""" | ||
|
|
||
| def __init__(self): | ||
| super().__init__("Abs") | ||
|
|
||
| def get_test_cases(self): | ||
| return parse_test_cases() | ||
|
|
||
| def torch_operator(self, *args, **kwargs): | ||
| return torch.abs(*args, **kwargs) | ||
|
|
||
| # def infinicore_operator(self, *args, **kwargs): | ||
| # """InfiniCore implementation (operator not yet available).""" | ||
| # return infinicore.abs(*args, **kwargs) | ||
|
|
||
|
|
||
| def main(): | ||
| """Main entry point""" | ||
| runner = GenericTestRunner(OpTest) | ||
| runner.run_and_exit() | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| main() | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,108 @@ | ||
| import sys | ||
| import os | ||
|
|
||
| sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..")) | ||
|
|
||
| import torch | ||
| import infinicore | ||
| from framework.base import BaseOperatorTest, TensorSpec, TestCase | ||
| from framework.runner import GenericTestRunner | ||
| from framework.utils import is_broadcast | ||
|
|
||
| # ======================================================================= | ||
| # Test cases format: (shape, input_strides_or_None) | ||
| # ======================================================================= | ||
|
|
||
| _TEST_CASES_DATA = [ | ||
| ((13, 4), None), | ||
| ((13, 4), (10, 1)), | ||
| ((8, 16), None), | ||
| ((8, 16), (40, 1)), | ||
| ((2, 3, 4), None), | ||
| ((16, 5632), None), | ||
| ] | ||
|
|
||
| _TOLERANCE_MAP = { | ||
| infinicore.float16: {"atol": 1e-3, "rtol": 1e-2}, | ||
| infinicore.float32: {"atol": 1e-5, "rtol": 1e-4}, | ||
| infinicore.bfloat16: {"atol": 1e-2, "rtol": 5e-2}, | ||
| } | ||
|
|
||
| _TENSOR_DTYPES = [infinicore.float16, infinicore.bfloat16, infinicore.float32] | ||
|
|
||
|
|
||
| def parse_test_cases(): | ||
| test_cases = [] | ||
| for data in _TEST_CASES_DATA: | ||
| shape = data[0] | ||
| in_strides = data[1] if len(data) > 1 else None | ||
|
|
||
| supports_inplace = not is_broadcast(in_strides) | ||
|
|
||
| for dtype in _TENSOR_DTYPES: | ||
| tol = _TOLERANCE_MAP.get(dtype, {"atol": 1e-5, "rtol": 1e-4}) | ||
| input_spec = TensorSpec.from_tensor(shape, in_strides, dtype) | ||
| out_spec = TensorSpec.from_tensor(shape, None, dtype) | ||
|
|
||
| test_cases.append( | ||
| TestCase( | ||
| inputs=[input_spec], | ||
| kwargs={}, | ||
| output_spec=None, | ||
| comparison_target=None, | ||
| tolerance=tol, | ||
| description="acos - OUT_OF_PLACE", | ||
| ) | ||
| ) | ||
|
|
||
| test_cases.append( | ||
| TestCase( | ||
| inputs=[input_spec], | ||
| kwargs={}, | ||
| output_spec=out_spec, | ||
| comparison_target="out", | ||
| tolerance=tol, | ||
| description="acos - INPLACE(out)", | ||
| ) | ||
| ) | ||
|
|
||
| if supports_inplace: | ||
| test_cases.append( | ||
| TestCase( | ||
| inputs=[input_spec], | ||
| kwargs={"out": 0}, | ||
| output_spec=None, | ||
| comparison_target=0, | ||
| tolerance=tol, | ||
| description="acos - INPLACE(input)", | ||
| ) | ||
| ) | ||
|
|
||
| return test_cases | ||
|
|
||
|
|
||
| class OpTest(BaseOperatorTest): | ||
| """Acos operator test with simplified implementation""" | ||
|
|
||
| def __init__(self): | ||
| super().__init__("Acos") | ||
|
|
||
| def get_test_cases(self): | ||
| return parse_test_cases() | ||
|
|
||
| def torch_operator(self, *args, **kwargs): | ||
| return torch.acos(*args, **kwargs) | ||
|
|
||
| # def infinicore_operator(self, *args, **kwargs): | ||
| # """InfiniCore implementation (operator not yet available).""" | ||
| # return infinicore.acos(*args, **kwargs) | ||
|
|
||
|
|
||
| def main(): | ||
| """Main entry point""" | ||
| runner = GenericTestRunner(OpTest) | ||
| runner.run_and_exit() | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| import sys | ||
| import os | ||
|
|
||
| sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..")) | ||
|
|
||
| import torch | ||
| import infinicore | ||
| from framework.base import BaseOperatorTest, TensorSpec, TestCase | ||
| from framework.runner import GenericTestRunner | ||
| from framework.utils import is_broadcast | ||
|
|
||
| # ======================================================================= | ||
| # Test cases format: (shape, input_strides_or_None) | ||
| # Note: acosh domain is [1, inf); tests should use valid ranges when generating tensors. | ||
| # ======================================================================= | ||
|
|
||
| _TEST_CASES_DATA = [ | ||
| ((13, 4), None), | ||
| ((13, 4), (10, 1)), | ||
| ((8, 16), None), | ||
| ((8, 16), (40, 1)), | ||
| ((2, 3, 4), None), | ||
| ((16, 5632), None), | ||
| ] | ||
|
|
||
| _TOLERANCE_MAP = { | ||
| infinicore.float16: {"atol": 1e-2, "rtol": 1e-2}, | ||
| infinicore.float32: {"atol": 1e-5, "rtol": 1e-4}, | ||
| infinicore.bfloat16: {"atol": 1e-2, "rtol": 5e-2}, | ||
| } | ||
|
|
||
| _TENSOR_DTYPES = [infinicore.float16, infinicore.bfloat16, infinicore.float32] | ||
|
|
||
|
|
||
| def parse_test_cases(): | ||
| test_cases = [] | ||
| for data in _TEST_CASES_DATA: | ||
| shape = data[0] | ||
| in_strides = data[1] if len(data) > 1 else None | ||
|
|
||
| supports_inplace = not is_broadcast(in_strides) | ||
|
|
||
| for dtype in _TENSOR_DTYPES: | ||
| tol = _TOLERANCE_MAP.get(dtype, {"atol": 1e-5, "rtol": 1e-4}) | ||
| input_spec = TensorSpec.from_tensor(shape, in_strides, dtype) | ||
| out_spec = TensorSpec.from_tensor(shape, None, dtype) | ||
|
|
||
| test_cases.append( | ||
| TestCase( | ||
| inputs=[input_spec], | ||
| kwargs={}, | ||
| output_spec=None, | ||
| comparison_target=None, | ||
| tolerance=tol, | ||
| description="acosh - OUT_OF_PLACE", | ||
| ) | ||
| ) | ||
|
|
||
| test_cases.append( | ||
| TestCase( | ||
| inputs=[input_spec], | ||
| kwargs={}, | ||
| output_spec=out_spec, | ||
| comparison_target="out", | ||
| tolerance=tol, | ||
| description="acosh - INPLACE(out)", | ||
| ) | ||
| ) | ||
|
|
||
| if supports_inplace: | ||
| test_cases.append( | ||
| TestCase( | ||
| inputs=[input_spec], | ||
| kwargs={"out": 0}, | ||
| output_spec=None, | ||
| comparison_target=0, | ||
| tolerance=tol, | ||
| description="acosh - INPLACE(input)", | ||
| ) | ||
| ) | ||
|
|
||
| return test_cases | ||
|
|
||
|
|
||
| class OpTest(BaseOperatorTest): | ||
| """Acosh operator test with simplified implementation""" | ||
|
|
||
| def __init__(self): | ||
| super().__init__("Acosh") | ||
|
|
||
| def get_test_cases(self): | ||
| return parse_test_cases() | ||
|
|
||
| def torch_operator(self, *args, **kwargs): | ||
| return torch.acosh(*args, **kwargs) | ||
|
|
||
| # def infinicore_operator(self, *args, **kwargs): | ||
| # """InfiniCore implementation (operator not yet available).""" | ||
| # return infinicore.acosh(*args, **kwargs) | ||
|
|
||
|
|
||
| def main(): | ||
| """Main entry point""" | ||
| runner = GenericTestRunner(OpTest) | ||
| runner.run_and_exit() | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| main() |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
大规模张量、边界值特殊情况、特殊值处理nan inf、非标准步幅等