Skip to content

Commit fc87462

Browse files
authored
[EZ] Replace pytorch-labs with meta-pytorch
Differential Revision: D80349430 Pull Request resolved: #13340
1 parent 57b500c commit fc87462

File tree

13 files changed

+18
-18
lines changed

13 files changed

+18
-18
lines changed

.ci/scripts/test_ios_ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ say() {
3636

3737
say "Cloning the Demo App"
3838

39-
git clone --depth 1 https://github.com/pytorch-labs/executorch-examples.git
39+
git clone --depth 1 https://github.com/meta-pytorch/executorch-examples.git
4040

4141
say "Installing CoreML Backend Requirements"
4242

backends/apple/mps/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The MPS backend device maps machine learning computational graphs and primitives
1515
* [Introduction to ExecuTorch](../../../docs/source/intro-how-it-works.md)
1616
* [Setting up ExecuTorch](../../../docs/source/getting-started-setup.rst)
1717
* [Building ExecuTorch with CMake](../../../docs/source/using-executorch-cpp.md#building-with-cmake)
18-
* [ExecuTorch iOS Demo App](https://github.com/pytorch-labs/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo)
18+
* [ExecuTorch iOS Demo App](https://github.com/meta-pytorch/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo)
1919
* [ExecuTorch iOS LLaMA Demo App](../../../docs/source/llm/llama-demo-ios.md)
2020
:::
2121
::::

backends/test/facto/test_facto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#
1010
# This file contains logic to run generated operator tests using the FACTO
11-
# library (https://github.com/pytorch-labs/FACTO). To run the tests, first
11+
# library (https://github.com/meta-pytorch/FACTO). To run the tests, first
1212
# clone and install FACTO by running pip install . from the FACTO source
1313
# directory. Then, from the executorch root directory, run the following:
1414
#

docs/source/backends-mps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The MPS backend device maps machine learning computational graphs and primitives
1515
* [Introduction to ExecuTorch](intro-how-it-works.md)
1616
* [Getting Started](getting-started.md)
1717
* [Building ExecuTorch with CMake](using-executorch-building-from-source.md)
18-
* [ExecuTorch iOS Demo App](https://github.com/pytorch-labs/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo)
18+
* [ExecuTorch iOS Demo App](https://github.com/meta-pytorch/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo)
1919
* [ExecuTorch iOS LLaMA Demo App](llm/llama-demo-ios.md)
2020
:::
2121
::::

docs/source/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ print("Comparing against original PyTorch module")
101101
print(torch.allclose(output[0], eager_reference_output, rtol=1e-3, atol=1e-5))
102102
```
103103

104-
For complete examples of exporting and running the model, please refer to our [examples GitHub repository](https://github.com/pytorch-labs/executorch-examples/tree/main/mv2/python).
104+
For complete examples of exporting and running the model, please refer to our [examples GitHub repository](https://github.com/meta-pytorch/executorch-examples/tree/main/mv2/python).
105105

106106
Additionally, if you work with Hugging Face models, the [*huggingface/optimum-executorch*](https://github.com/huggingface/optimum-executorch) library simplifies running these models end-to-end with ExecuTorch, using familiar Hugging Face APIs. Visit the repository for specific examples and supported models.
107107

@@ -147,7 +147,7 @@ EValue[] output = model.forward(input_evalue);
147147
float[] scores = output[0].toTensor().getDataAsFloatArray();
148148
```
149149

150-
For a full example of running a model on Android, see the [DeepLabV3AndroidDemo](https://github.com/pytorch-labs/executorch-examples/tree/main/dl3/android/DeepLabV3Demo). For more information on Android development, including building from source, a full description of the Java APIs, and information on using ExecuTorch from Android native code, see [Using ExecuTorch on Android](using-executorch-android.md).
150+
For a full example of running a model on Android, see the [DeepLabV3AndroidDemo](https://github.com/meta-pytorch/executorch-examples/tree/main/dl3/android/DeepLabV3Demo). For more information on Android development, including building from source, a full description of the Java APIs, and information on using ExecuTorch from Android native code, see [Using ExecuTorch on Android](using-executorch-android.md).
151151

152152
### iOS
153153

@@ -214,7 +214,7 @@ if (result.ok()) {
214214
215215
For more information on the C++ APIs, see [Running an ExecuTorch Model Using the Module Extension in C++](extension-module.md) and [Managing Tensor Memory in C++](extension-tensor.md).
216216
217-
For complete examples of building and running C++ application, please refer to our [examples GitHub repository](https://github.com/pytorch-labs/executorch-examples/tree/main/mv2/cpp).
217+
For complete examples of building and running C++ application, please refer to our [examples GitHub repository](https://github.com/meta-pytorch/executorch-examples/tree/main/mv2/cpp).
218218
219219
<hr/>
220220

docs/source/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ ExecuTorch provides support for:
4141
- [Quantization](quantization-overview)
4242
- [FAQs](using-executorch-faqs)
4343
#### Examples
44-
- [Android Demo Apps](https://github.com/pytorch-labs/executorch-examples/tree/main/dl3/android/DeepLabV3Demo#executorch-android-demo-app)
45-
- [iOS Demo Apps](https://github.com/pytorch-labs/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo)
44+
- [Android Demo Apps](https://github.com/meta-pytorch/executorch-examples/tree/main/dl3/android/DeepLabV3Demo#executorch-android-demo-app)
45+
- [iOS Demo Apps](https://github.com/meta-pytorch/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo)
4646
- [Hugging Face Models](https://github.com/huggingface/optimum-executorch/blob/main/README.md)
4747
#### Backends
4848
- [Overview](backends-overview)
@@ -147,7 +147,7 @@ using-executorch-faqs
147147
:hidden:
148148
149149
Building an ExecuTorch Android Demo App <https://github.com/pytorch-labs/executorch-examples/tree/main/dl3/android/DeepLabV3Demo#executorch-android-demo-app>
150-
Building an ExecuTorch iOS Demo App <https://github.com/pytorch-labs/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo>
150+
Building an ExecuTorch iOS Demo App <https://github.com/meta-pytorch/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo>
151151
tutorial-arm.md
152152
```
153153

docs/source/llm/run-with-c-plus-plus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ Supported tokenizer formats include:
251251
3. **TikToken**: BPE tokenizers
252252
4. **Llama2c**: BPE tokenizers in the Llama2.c format
253253

254-
For custom tokenizers, you can find implementations in the [pytorch-labs/tokenizers](https://github.com/pytorch-labs/tokenizers) repository.
254+
For custom tokenizers, you can find implementations in the [meta-pytorch/tokenizers](https://github.com/meta-pytorch/tokenizers) repository.
255255

256256

257257
## Other APIs

docs/source/using-executorch-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ adb push extension/module/test/resources/add.pte /data/local/tmp/
201201

202202
This example loads an ExecuTorch module, prepares input data, runs inference, and processes the output data.
203203

204-
Please use [DeepLabV3AndroidDemo](https://github.com/pytorch-labs/executorch-examples/tree/main/dl3/android/DeepLabV3Demo)
204+
Please use [DeepLabV3AndroidDemo](https://github.com/meta-pytorch/executorch-examples/tree/main/dl3/android/DeepLabV3Demo)
205205
and [LlamaDemo](https://github.com/pytorch/executorch/tree/main/examples/demo-apps/android/LlamaDemo) for the code examples
206206
using ExecuTorch AAR package.
207207

docs/source/using-executorch-building-from-source.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ See backend-specific documentation for more details.
392392
2. Copy over the generated `.xcframework` bundles to your Xcode project, link them against
393393
your targets and don't forget to add an extra linker flag `-all_load`.
394394
395-
Check out the [iOS Demo App](https://github.com/pytorch-labs/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo) tutorial for more info.
395+
Check out the [iOS Demo App](https://github.com/meta-pytorch/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo) tutorial for more info.
396396
397397
<hr/>
398398
@@ -499,5 +499,5 @@ Output 0: tensor(sizes=[1, 1000], [
499499
## Next Steps
500500
501501
* [Selective Build](kernel-library-selective-build.md) to link only kernels used by the program. This can provide significant binary size savings.
502-
* Tutorials on building [Android](https://github.com/pytorch-labs/executorch-examples/tree/main/dl3/android/DeepLabV3Demo#executorch-android-demo-app) and [iOS](https://github.com/pytorch-labs/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo) demo apps.
502+
* Tutorials on building [Android](https://github.com/meta-pytorch/executorch-examples/tree/main/dl3/android/DeepLabV3Demo#executorch-android-demo-app) and [iOS](https://github.com/meta-pytorch/executorch-examples/tree/main/mv3/apple/ExecuTorchDemo) demo apps.
503503
* Tutorials on deploying applications to embedded devices such as [ARM Cortex-M/Ethos-U](backends-arm-ethos-u.md) and [XTensa HiFi DSP](backends-cadence.md).

docs/source/using-executorch-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if (result.ok()) {
3232
3333
For more information on the Module class, see [Running an ExecuTorch Model Using the Module Extension in C++](extension-module.md). For information on high-level tensor APIs, see [Managing Tensor Memory in C++](extension-tensor.md).
3434
35-
For complete examples of building and running a C++ application using the Module API, refer to our [examples GitHub repository](https://github.com/pytorch-labs/executorch-examples/tree/main/mv2/cpp).
35+
For complete examples of building and running a C++ application using the Module API, refer to our [examples GitHub repository](https://github.com/meta-pytorch/executorch-examples/tree/main/mv2/cpp).
3636
3737
## Low-Level APIs
3838

0 commit comments

Comments
 (0)