-
Notifications
You must be signed in to change notification settings - Fork 486
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wrap constant arg in XLAExportInterpreter (#6460)
- Loading branch information
Showing
2 changed files
with
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import re | ||
import sys | ||
import unittest | ||
|
||
import torch | ||
import torch_xla | ||
import torch_xla.core.xla_model as xm | ||
from torch_xla.stablehlo import exported_program_to_stablehlo | ||
|
||
device = xm.xla_device() | ||
|
||
|
||
class XLAExportInterpreterTest(unittest.TestCase): | ||
|
||
def test_constant_wrapping(self): | ||
|
||
class M(torch.nn.Module): | ||
|
||
def forward(self, x): | ||
return 1.0 - x | ||
|
||
ep = torch.export.export(M(), (torch.rand(2, 3),)) | ||
ep = ep.run_decompositions() | ||
shlo_module = exported_program_to_stablehlo(ep) | ||
shlo_text = shlo_module.get_stablehlo_text() | ||
self.assertTrue( | ||
re.search(r'stablehlo.constant.* : tensor<2x3xf32>', shlo_text) | ||
is not None) | ||
|
||
def test_constant_wrapping_scalar_variant(self): | ||
|
||
class M(torch.nn.Module): | ||
|
||
def forward(self, x): | ||
return torch.ops.aten.rsub(x, 1.0) | ||
|
||
ep = torch.export.export(M(), (torch.rand(2, 3),)) | ||
shlo_module = exported_program_to_stablehlo(ep) | ||
shlo_text = shlo_module.get_stablehlo_text() | ||
self.assertTrue( | ||
re.search(r'stablehlo.constant.* : tensor<2x3xf32>', shlo_text) | ||
is not None) | ||
|
||
|
||
if __name__ == '__main__': | ||
test = unittest.main() | ||
sys.exit(0 if test.result.wasSuccessful() else 1) |
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