File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 16
16
jobs :
17
17
build :
18
18
uses : pytorch/test-infra/.github/workflows/linux_job.yml@main
19
+ strategy :
20
+ matrix :
21
+ include :
22
+ - build-tool : buck2
19
23
with :
20
24
job-name : Build doc
21
25
runner : linux.2xlarge
28
32
CONDA_ENV=$(conda env list --json | jq -r ".envs | .[-1]")
29
33
conda activate "${CONDA_ENV}"
30
34
31
- source .ci/scripts/utils.sh
32
- # This is a simple Python script but as it tries to import executorch.examples.models,
33
- # it requires a whole bunch of Executorch dependencies on the Docker image
34
- install_executorch
35
+ BUILD_TOOL=${{ matrix.build-tool }}
36
+ # Setup MacOS dependencies as there is no Docker support on MacOS atm
37
+ PYTHON_EXECUTABLE=python bash .ci/scripts/setup-linux.sh "${BUILD_TOOL}"
35
38
36
39
if [[(${GITHUB_EVENT_NAME} = 'pull_request' && (${GITHUB_BASE_REF} = 'release'*)) || (${GITHUB_REF} = 'refs/heads/release'*) ]]; then
37
40
export CHANNEL=test
Original file line number Diff line number Diff line change @@ -181,8 +181,8 @@ ExecuTorch tutorials.
181
181
:tags: Template
182
182
183
183
.. customcarditem ::
184
- :header: Exporting to Executorch Tutorial
185
- :card_description: A tutorial for exporting a model and lowering a it to be runnable on the Executorch runtime.
184
+ :header: Exporting to ExecuTorch Tutorial
185
+ :card_description: A tutorial for exporting a model and lowering a it to be runnable on the ExecuTorch runtime.
186
186
:image: _static/img/generic-pytorch-logo.png
187
187
:link: tutorials/export-to-executorch.html
188
188
:tags: Export,Delegation,Quantization
You can’t perform that action at this time.
0 commit comments