Skip to content

Commit 2579c85

Browse files
committed
up
1 parent b5e2484 commit 2579c85

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/_unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
macos:
4444
uses: pytorch/test-infra/.github/workflows/macos_job.yml@main
4545
with:
46-
runner: macos-15-xlarge
46+
runner: macos-m1-stable
4747
python-version: '3.11'
4848
submodules: 'recursive'
4949
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}

backends/apple/coreml/test/test_torch_ops.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
#
33
# Please refer to the license found in the LICENSE file in the root directory of the source tree.
44

5-
<<<<<<< HEAD
65
import platform
7-
=======
8-
>>>>>>> 921dafe9b (up)
96
import sys
107
import unittest
118

exir/program/_program.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,6 +1123,9 @@ def _gen_edge_manager_for_partitioners(
11231123
ops_set_to_not_decompose_by_program = {}
11241124
edge_programs: Dict[str, ExportedProgram] = {}
11251125
for name, program in aten_programs.items():
1126+
# Functionalize program before asking partitioners to preserve ops
1127+
program = program.run_decompositions({})
1128+
11261129
if partitioner is not None:
11271130
# preserve all ops listed by all partitioners first
11281131
all_ops_no_decomp = set()

0 commit comments

Comments
 (0)