diff --git a/.github/workflows/llm_unit_tests.yml b/.github/workflows/llm_unit_tests.yml index 85c7697f..65ff2856 100644 --- a/.github/workflows/llm_unit_tests.yml +++ b/.github/workflows/llm_unit_tests.yml @@ -209,12 +209,12 @@ jobs: fail-fast: false matrix: include: - # - pytorch-version: "2.1" - # python-version: "3.9" - # - pytorch-version: "2.1" - # python-version: "3.10" - # - pytorch-version: "2.1" - # python-version: "3.11" + - pytorch-version: "2.1" + python-version: "3.9" + - pytorch-version: "2.1" + python-version: "3.10" + - pytorch-version: "2.1" + python-version: "3.11" - pytorch-version: "2.0" python-version: "3.9" - pytorch-version: "2.0" @@ -266,9 +266,9 @@ jobs: - name: Test installed xpu version shell: bash run: | - # TODO: differentiate oneapi path after oneapi 2024.0 is installed on test machine + # Specific oneapi position on arc ut test machines if [[ '${{ matrix.pytorch-version }}' == '2.1' ]]; then - source /opt/intel/oneapi/setvars.sh + source /home/arda/intel/oneapi/setvars.sh elif [[ '${{ matrix.pytorch-version }}' == '2.0' ]]; then source /opt/intel/oneapi/setvars.sh fi @@ -312,9 +312,9 @@ jobs: - name: Run LLM inference test shell: bash run: | - # TODO: differentiate oneapi path after oneapi 2024.0 is installed on test machine + # Specific oneapi position on arc ut test machines if [[ '${{ matrix.pytorch-version }}' == '2.1' ]]; then - source /opt/intel/oneapi/setvars.sh + source /home/arda/intel/oneapi/setvars.sh elif [[ '${{ matrix.pytorch-version }}' == '2.0' ]]; then source /opt/intel/oneapi/setvars.sh fi @@ -326,9 +326,9 @@ jobs: run: | python -m pip install transformers==4.34.0 peft==0.5.0 accelerate==0.23.0 python -m pip install bitsandbytes scipy - # TODO: differentiate oneapi path after oneapi 2024.0 is installed on test machine + # Specific oneapi position on arc ut test machines if [[ '${{ matrix.pytorch-version }}' == '2.1' ]]; then - source /opt/intel/oneapi/setvars.sh + source /home/arda/intel/oneapi/setvars.sh elif [[ '${{ matrix.pytorch-version }}' == '2.0' ]]; then source /opt/intel/oneapi/setvars.sh fi