Unverified Commit 01645603 authored by Guang Yang's avatar Guang Yang Committed by GitHub
Browse files

Fixed test `test_static_cache_exportability` with torch 2.4.0 (#32516)



Workaround the export issue in torch 2.4
Co-authored-by: default avatarGuang Yang <guangyang@fb.com>
parent 04428160
...@@ -174,6 +174,8 @@ class CacheTest(unittest.TestCase): ...@@ -174,6 +174,8 @@ class CacheTest(unittest.TestCase):
""" """
Tests that static cache works with `torch.export()` Tests that static cache works with `torch.export()`
""" """
import torch
if version.parse(torch.__version__) < version.parse("2.3"): if version.parse(torch.__version__) < version.parse("2.3"):
self.skipTest(reason="This test requires torch >= 2.3 to run.") self.skipTest(reason="This test requires torch >= 2.3 to run.")
...@@ -217,10 +219,15 @@ class CacheTest(unittest.TestCase): ...@@ -217,10 +219,15 @@ class CacheTest(unittest.TestCase):
set_seed(0) set_seed(0)
with torch.no_grad(): with torch.no_grad():
from torch.export import ExportedProgram, export import torch.export._trace
from torch.export import ExportedProgram
model = ExportatibleModelWithStaticCache(config, m) model = ExportatibleModelWithStaticCache(config, m)
exported_program = export(model, args=(inputs,), kwargs={"input_pos": torch.arange(1)}) # Due to issue https://github.com/pytorch/pytorch/issues/128394, we need to switch to use an internal
# export API and pre_dispatch=False. Switch to use the public API once the issue is included in 2.4.1+ release.
exported_program = torch.export._trace._export(
model, args=(inputs,), kwargs={"input_pos": torch.arange(1)}, pre_dispatch=False, strict=True
)
self.assertTrue(isinstance(exported_program, ExportedProgram)) self.assertTrue(isinstance(exported_program, ExportedProgram))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment