Skip to content

Commit

Permalink
Merge branch 'main' into transformer
Browse files Browse the repository at this point in the history
  • Loading branch information
svekars authored Oct 23, 2024
2 parents c28f568 + 0c5e2c6 commit 8c7ec76
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .ci/docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tqdm==4.66.1
numpy==1.24.4
matplotlib
librosa
torch==2.4
torch==2.5
torchvision
torchdata
networkx
Expand Down Expand Up @@ -69,5 +69,5 @@ pycocotools
semilearn==0.3.2
torchao==0.5.0
segment_anything==1.0
torchrec==0.8.0
fbgemm-gpu==0.8.0
torchrec==1.0.0; platform_system == "Linux"
fbgemm-gpu==1.0.0; platform_system == "Linux"
5 changes: 2 additions & 3 deletions .jenkins/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ sudo apt-get install -y pandoc
#Install PyTorch Nightly for test.
# Nightly - pip install --pre torch torchvision torchaudio -f https://download.pytorch.org/whl/nightly/cu102/torch_nightly.html
# Install 2.5 to merge all 2.4 PRs - uncomment to install nightly binaries (update the version as needed).
pip uninstall -y torch torchvision torchaudio torchtext torchdata
pip3 install torch==2.5.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124
pip3 install fbgemm-gpu==1.0.0 torchrec==1.0.0 --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124
# pip uninstall -y torch torchvision torchaudio torchtext torchdata
# pip3 install torch==2.5.0 torchvision torchaudio --no-cache-dir --index-url https://download.pytorch.org/whl/test/cu124

# Install two language tokenizers for Translation with TorchText tutorial
python -m spacy download en_core_web_sm
Expand Down
2 changes: 1 addition & 1 deletion prototype_source/inductor_windows_cpu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Intel Compiler
#. Download and install `Intel Compiler <https://www.intel.com/content/www/us/en/developer/tools/oneapi/dpc-compiler-download.html>`_ with Windows version.
#. Set Windows Inductor Compiler with the CXX environment variable ``set CXX=icx-cl``.

Here is a comprehensive step-by-step `guide <https://www.intel.com/content/www/us/en/developer/articles/technical/boost-pytorch-inductor-performance-on-windows.html>`_, complete with performance data.
Intel also provides a comprehensive step-by-step guide, complete with performance data. Please check `Intel® oneAPI DPC++/C++ Compiler Boosts PyTorch* Inductor Performance on Windows* for CPU Devices <https://www.intel.com/content/www/us/en/developer/articles/technical/boost-pytorch-inductor-performance-on-windows.html>`_.

LLVM Compiler
^^^^^^^^^^^^^
Expand Down

0 comments on commit 8c7ec76

Please sign in to comment.