File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -481,10 +481,11 @@ MemoryManager memory_manager(
481
481
strstr (model_path, " emformer_transcribe" ) ||
482
482
strstr (model_path, " emformer_join" ) ||
483
483
strstr (model_path, " edsr" ) ||
484
+ strstr (model_path, " llama2" ) ||
484
485
strstr (model_path, " ic3" ) ||
485
486
strstr (model_path, " ic4" )) {
486
487
atol = 1e-04 ;
487
- }
488
+ }
488
489
status = torch::executor::util::VerifyResultWithBundledExpectedOutput (
489
490
*method,
490
491
file_data->data (),
Original file line number Diff line number Diff line change @@ -75,8 +75,8 @@ def __init__(self):
75
75
super ().__init__ ()
76
76
self .mps_module = lowered_module
77
77
78
- def forward (self , input_args ):
79
- return self .mps_module (input_args )
78
+ def forward (self , * input_args ):
79
+ return self .mps_module (* input_args )
80
80
81
81
executorch_program = (
82
82
exir .capture (
You can’t perform that action at this time.
0 commit comments