-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support converter for torch.log10
- Loading branch information
Showing
3 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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,49 @@ | ||
import torch | ||
import torch.nn as nn | ||
from parameterized import parameterized | ||
from torch.testing._internal.common_utils import run_tests | ||
|
||
from .harness import DispatchTestCase | ||
|
||
|
||
class TestLogConverter(DispatchTestCase): | ||
@parameterized.expand( | ||
[ | ||
((10,), torch.float), | ||
((1, 20), torch.float), | ||
((2, 3, 4), torch.float), | ||
((2, 3, 4, 5), torch.float), | ||
] | ||
) | ||
def test_log10_float(self, input_shape, dtype): | ||
class log10(nn.Module): | ||
def forward(self, input): | ||
return torch.ops.aten.log10.default(input) | ||
|
||
inputs = [torch.randn(input_shape, dtype=dtype)] | ||
self.run_test( | ||
log10(), | ||
inputs, | ||
) | ||
|
||
@parameterized.expand( | ||
[ | ||
((10,), torch.int, 0, 5), | ||
((1, 20), torch.int32, -10, 10), | ||
((2, 3, 4), torch.int, -5, 5), | ||
] | ||
) | ||
def test_log10_int(self, input_shape, dtype, low, high): | ||
class log10(nn.Module): | ||
def forward(self, input): | ||
return torch.ops.aten.log10.default(input) | ||
|
||
inputs = [torch.randint(low, high, input_shape, dtype=dtype)] | ||
self.run_test( | ||
log10(), | ||
inputs, | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
run_tests() |