Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/cadence/operators/test_add_op.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
Expand Down Expand Up @@ -65,7 +65,7 @@

model.eval()
export_and_run_model(
model, (X, Y), file_name=self._testMethodName, run_and_compare=False
model, (X, Y), file_name=self._testMethodName
)

# pyre-fixme[16]: Module `parameterized.parameterized` has no attribute `expand`.
Expand Down Expand Up @@ -115,7 +115,7 @@

model.eval()
export_and_run_model(
model, (X, Y), file_name=self._testMethodName, run_and_compare=False
model, (X, Y), file_name=self._testMethodName
)


Expand Down
2 changes: 1 addition & 1 deletion examples/cadence/operators/test_g3_ops.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# pyre-unsafe
import unittest
from typing import Any, cast, List, OrderedDict, Tuple
Expand All @@ -17,7 +17,7 @@
def run_and_verify(self, model: nn.Module, inputs: Tuple[Any, ...]) -> None:
model.eval()
export_and_run_model(
model, inputs, file_name=self._testMethodName, run_and_compare=False
model, inputs, file_name=self._testMethodName
)

# pyre-ignore[16]: Module `parameterized.parameterized` has no attribute `expand`.
Expand Down
Loading