Skip to content

Commit 3baed71

Browse files
authored
Merge branch 'main' into sekyondaMeta-FSDP_TutorialLink
2 parents 7f1c14b + 5a5edfc commit 3baed71

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.lycheeignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ http://localhost:6006
1515

1616
# Ignore local host link from recipes_source/deployment_with_flask.rst
1717
http://localhost:5000/predict
18+
19+
# Ignore local host link from advanced_source/cpp_frontend.rst
20+
https://www.uber.com/blog/deep-neuroevolution/

advanced_source/cpp_frontend.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ the right tool for the job. Examples for such environments include:
5757
Multiprocessing is an alternative, but not as scalable and has significant
5858
shortcomings. C++ has no such constraints and threads are easy to use and
5959
create. Models requiring heavy parallelization, like those used in `Deep
60-
Neuroevolution <https://eng.uber.com/deep-neuroevolution/>`_, can benefit from
60+
Neuroevolution <https://www.uber.com/blog/deep-neuroevolution/>`_, can benefit from
6161
this.
6262
- **Existing C++ Codebases**: You may be the owner of an existing C++
6363
application doing anything from serving web pages in a backend server to
@@ -662,7 +662,7 @@ Defining the DCGAN Modules
662662
We now have the necessary background and introduction to define the modules for
663663
the machine learning task we want to solve in this post. To recap: our task is
664664
to generate images of digits from the `MNIST dataset
665-
<http://yann.lecun.com/exdb/mnist/>`_. We want to use a `generative adversarial
665+
<https://huggingface.co/datasets/ylecun/mnist>`_. We want to use a `generative adversarial
666666
network (GAN)
667667
<https://papers.nips.cc/paper/5423-generative-adversarial-nets.pdf>`_ to solve
668668
this task. In particular, we'll use a `DCGAN architecture

intermediate_source/torchserve_with_ipex.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,8 @@ For interested readers, please check out the following documents:
379379

380380
- `CPU specific optimizations <https://pytorch.org/tutorials/recipes/recipes/tuning_guide.html#cpu-specific-optimizations>`_
381381
- `Maximize Performance of Intel® Software Optimization for PyTorch* on CPU <https://www.intel.com/content/www/us/en/developer/articles/technical/how-to-get-better-performance-on-pytorchcaffe2-with-intel-acceleration.html>`_
382-
- `Performance Tuning Guide <https://intel.github.io/intel-extension-for-pytorch/tutorials/performance_tuning/tuning_guide.html>`_
383-
- `Launch Script Usage Guide <https://intel.github.io/intel-extension-for-pytorch/tutorials/performance_tuning/launch_script.html>`_
382+
- `Performance Tuning Guide <https://intel.github.io/intel-extension-for-pytorch/cpu/latest/tutorials/performance_tuning/tuning_guide.html>`_
383+
- `Launch Script Usage Guide <https://intel.github.io/intel-extension-for-pytorch/cpu/latest/tutorials/performance_tuning/launch_script.html>`_
384384
- `Top-down Microarchitecture Analysis Method <https://www.intel.com/content/www/us/en/develop/documentation/vtune-cookbook/top/methodologies/top-down-microarchitecture-analysis-method.html>`_
385385
- `Configuring oneDNN for Benchmarking <https://oneapi-src.github.io/oneDNN/dev_guide_performance_settings.html#benchmarking-settings>`_
386386
- `Intel® VTune™ Profiler <https://www.intel.com/content/www/us/en/developer/tools/oneapi/vtune-profiler.html#gs.tcbgpa>`_

0 commit comments

Comments
 (0)