* move harness nightly files to test folder * change workflow file path accordingly * use arc01 when pr * fix path * fix fp16 csv path
		
			
				
	
	
		
			317 lines
		
	
	
		
			No EOL
		
	
	
		
			12 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			317 lines
		
	
	
		
			No EOL
		
	
	
		
			12 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: LLM Harness Evaluation
 | 
						|
 | 
						|
# Cancel previous runs in the PR when you push new commits
 | 
						|
concurrency:
 | 
						|
  group: ${{ github.workflow }}-llm-nightly-test-${{ github.event.pull_request.number || github.run_id }}
 | 
						|
  cancel-in-progress: true
 | 
						|
 | 
						|
permissions:
 | 
						|
  contents: read
 | 
						|
 | 
						|
# Controls when the action will run.
 | 
						|
on:
 | 
						|
  schedule:
 | 
						|
    - cron: "30 12 * * *" # GMT time, 12:30 GMT == 20:30 China
 | 
						|
  pull_request:
 | 
						|
    branches: [main]
 | 
						|
    paths:
 | 
						|
      - ".github/workflows/llm-harness-evaluation.yml"
 | 
						|
  # Allows you to run this workflow manually from the Actions tab
 | 
						|
  workflow_dispatch:
 | 
						|
    inputs:
 | 
						|
      model_name:
 | 
						|
        description: 'Model names, separated by comma and must be quoted.'
 | 
						|
        required: true
 | 
						|
        type: string
 | 
						|
      precision:
 | 
						|
        description: 'Precisions, separated by comma and must be quoted.'
 | 
						|
        required: true
 | 
						|
        type: string
 | 
						|
      task:
 | 
						|
        description: 'Tasks, separated by comma and must be quoted.'
 | 
						|
        required: true
 | 
						|
        type: string
 | 
						|
      runs-on:
 | 
						|
        description: 'Labels to filter the runners, separated by comma and must be quoted.'
 | 
						|
        default: "accuracy"
 | 
						|
        required: false
 | 
						|
        type: string
 | 
						|
 | 
						|
 | 
						|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
 | 
						|
jobs:
 | 
						|
  llm-cpp-build:
 | 
						|
    uses: ./.github/workflows/llm-binary-build.yml
 | 
						|
  # Set the testing matrix based on the event (schedule, PR, or manual dispatch)
 | 
						|
  set-matrix:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    outputs:
 | 
						|
      model_name: ${{ steps.set-matrix.outputs.model_name }}
 | 
						|
      precision: ${{ steps.set-matrix.outputs.precision }}
 | 
						|
      task: ${{ steps.set-matrix.outputs.task }}
 | 
						|
      runner: ${{ steps.set-matrix.outputs.runner }}
 | 
						|
    steps:
 | 
						|
      - name: set-nightly-env
 | 
						|
        if: ${{github.event_name == 'schedule'}}
 | 
						|
        env:
 | 
						|
          NIGHTLY_MATRIX_MODEL_NAME: '["Llama2-7b-guanaco-dolphin-500", "falcon-7b-instruct-with-patch", 
 | 
						|
                        "Mistral-7B-v0.1", "mpt-7b-chat", "Baichuan2-7B-Chat-LLaMAfied"]'
 | 
						|
          NIGHTLY_MATRIX_TASK: '["arc", "truthfulqa", "winogrande"]'
 | 
						|
          NIGHTLY_MATRIX_PRECISION: '["sym_int4", "fp8"]'
 | 
						|
          NIGHTLY_LABELS: '["self-hosted", "llm", "accuracy-nightly"]'
 | 
						|
        run: |
 | 
						|
            echo "model_name=$NIGHTLY_MATRIX_MODEL_NAME" >> $GITHUB_ENV
 | 
						|
            echo "precision=$NIGHTLY_MATRIX_PRECISION" >> $GITHUB_ENV
 | 
						|
            echo "task=$NIGHTLY_MATRIX_TASK" >> $GITHUB_ENV
 | 
						|
            echo "runner=$NIGHTLY_LABELS" >> $GITHUB_ENV            
 | 
						|
 | 
						|
      - name: set-pr-env
 | 
						|
        if: ${{github.event_name == 'pull_request'}}
 | 
						|
        env:
 | 
						|
          PR_MATRIX_MODEL_NAME: '["Mistral-7B-v0.1"]'
 | 
						|
          PR_MATRIX_TASK: '["arc", "truthfulqa", "winogrande"]'
 | 
						|
          PR_MATRIX_PRECISION: '["fp8"]'
 | 
						|
          PR_LABELS: '["self-hosted", "llm", "temp-arc01"]'
 | 
						|
 | 
						|
        run: |
 | 
						|
            echo "model_name=$PR_MATRIX_MODEL_NAME" >> $GITHUB_ENV
 | 
						|
            echo "precision=$PR_MATRIX_PRECISION" >> $GITHUB_ENV
 | 
						|
            echo "task=$PR_MATRIX_TASK" >> $GITHUB_ENV
 | 
						|
            echo "runner=$PR_LABELS" >> $GITHUB_ENV            
 | 
						|
      - name: set-manual-env
 | 
						|
        if: ${{github.event_name == 'workflow_dispatch'}}
 | 
						|
        env:
 | 
						|
          MANUAL_MATRIX_MODEL_NAME: ${{format('[ {0} ]', inputs.model_name)}}
 | 
						|
          MANUAL_MATRIX_TASK: ${{format('[ {0} ]', inputs.task)}}
 | 
						|
          MANUAL_MATRIX_PRECISION: ${{format('[ {0} ]', inputs.precision)}}
 | 
						|
          MANUAL_LABELS: ${{format('["self-hosted", "llm", {0}]', inputs.runs-on)}}
 | 
						|
        run: |
 | 
						|
            echo "model_name=$MANUAL_MATRIX_MODEL_NAME" >> $GITHUB_ENV
 | 
						|
            echo "precision=$MANUAL_MATRIX_PRECISION" >> $GITHUB_ENV
 | 
						|
            echo "task=$MANUAL_MATRIX_TASK" >> $GITHUB_ENV
 | 
						|
            echo "runner=$MANUAL_LABELS" >> $GITHUB_ENV            
 | 
						|
      - name: set-matrix
 | 
						|
        id: set-matrix
 | 
						|
        run: |
 | 
						|
            echo "model_name=$model_name" >> $GITHUB_OUTPUT
 | 
						|
            echo "precision=$precision" >> $GITHUB_OUTPUT
 | 
						|
            echo "task=$task" >> $GITHUB_OUTPUT
 | 
						|
            echo "runner=$runner" >> $GITHUB_OUTPUT            
 | 
						|
  llm-harness-evaluation:
 | 
						|
    timeout-minutes: 1000
 | 
						|
    needs: [llm-cpp-build, set-matrix]
 | 
						|
    strategy:
 | 
						|
      fail-fast: false
 | 
						|
      matrix:
 | 
						|
        python-version: ["3.9"]
 | 
						|
        model_name: ${{ fromJson(needs.set-matrix.outputs.model_name) }}
 | 
						|
        task: ${{ fromJson(needs.set-matrix.outputs.task) }}
 | 
						|
        precision: ${{ fromJson(needs.set-matrix.outputs.precision) }}
 | 
						|
        device: [xpu]
 | 
						|
        
 | 
						|
    runs-on: ${{ fromJson(needs.set-matrix.outputs.runner) }}
 | 
						|
    outputs:
 | 
						|
      output_path: ${{ steps.run_harness.outputs.output_path }}
 | 
						|
    env:
 | 
						|
      ANALYTICS_ZOO_ROOT: ${{ github.workspace }}
 | 
						|
      ORIGIN_DIR: /mnt/disk1/models
 | 
						|
      HARNESS_HF_HOME: /mnt/disk1/harness_home
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3
 | 
						|
      - name: Set up Python ${{ matrix.python-version }}
 | 
						|
        uses: actions/setup-python@v4
 | 
						|
        with:
 | 
						|
          python-version: ${{ matrix.python-version }}
 | 
						|
      - name: Install dependencies
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          set -e
 | 
						|
          python -m pip install --upgrade pip
 | 
						|
          python -m pip install --upgrade setuptools==58.0.4
 | 
						|
          python -m pip install --upgrade wheel          
 | 
						|
 | 
						|
      - name: Download llm binary
 | 
						|
        uses: ./.github/actions/llm/download-llm-binary
 | 
						|
 | 
						|
      - name: Run LLM install (all) test
 | 
						|
        uses: ./.github/actions/llm/setup-llm-env
 | 
						|
        with:
 | 
						|
          extra-dependency: "xpu_2.1"
 | 
						|
 | 
						|
      - name: Install harness
 | 
						|
        working-directory: ${{ github.workspace }}/python/llm/dev/benchmark/harness/
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          pip install git+https://github.com/EleutherAI/lm-evaluation-harness.git@b281b09          
 | 
						|
      
 | 
						|
      - name: Download models and datasets
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          echo "MODEL_PATH=${ORIGIN_DIR}/${{ matrix.model_name }}/" >> "$GITHUB_ENV"
 | 
						|
          MODEL_PATH=${ORIGIN_DIR}/${{ matrix.model_name }}/
 | 
						|
          if [ ! -d $HARNESS_HF_HOME ]; then
 | 
						|
            mkdir -p $HARNESS_HF_HOME
 | 
						|
          fi
 | 
						|
          wget -r -nH -nc -l inf --no-verbose --cut-dirs=2 ${LLM_FTP_URL}/llm/LeaderBoard_Datasets/ -P $HARNESS_HF_HOME/
 | 
						|
          wget -r -nH -nc --no-verbose --cut-dirs=1 ${LLM_FTP_URL}/llm/${{ matrix.model_name }} -P ${ORIGIN_DIR}
 | 
						|
                    
 | 
						|
      - name: Upgrade packages
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          pip install --upgrade datasets==2.14.6 
 | 
						|
          if [ "${{ matrix.model_name }}" = "Mistral-7B-v0.1" ]; then
 | 
						|
          pip install --upgrade transformers==4.36
 | 
						|
          else
 | 
						|
          pip install --upgrade transformers==4.31
 | 
						|
          fi          
 | 
						|
      
 | 
						|
 | 
						|
      - name: Run harness nightly
 | 
						|
        if: ${{github.event_name == 'schedule'}}
 | 
						|
        shell: bash
 | 
						|
        working-directory: ${{ github.workspace }}/python/llm/dev/benchmark/harness
 | 
						|
        env:
 | 
						|
          USE_XETLA: OFF
 | 
						|
          # SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS: 1
 | 
						|
        run: |
 | 
						|
          export HF_HOME=${HARNESS_HF_HOME}
 | 
						|
          export HF_DATASETS=$HARNESS_HF_HOME/datasets
 | 
						|
          export HF_DATASETS_CACHE=$HARNESS_HF_HOME/datasets
 | 
						|
          source /opt/intel/oneapi/setvars.sh
 | 
						|
          
 | 
						|
          python run_llb.py \
 | 
						|
            --model bigdl-llm \
 | 
						|
            --pretrained ${MODEL_PATH} \
 | 
						|
            --precision ${{ matrix.precision }} \
 | 
						|
            --device ${{ matrix.device }} \
 | 
						|
            --tasks ${{ matrix.task }} \
 | 
						|
            --batch_size 1 --no_cache --output_path results \          
 | 
						|
      
 | 
						|
      - name: Run harness pr
 | 
						|
        if: ${{github.event_name == 'pull_request'}}
 | 
						|
        shell: bash
 | 
						|
        working-directory: ${{ github.workspace }}/python/llm/dev/benchmark/harness
 | 
						|
        env:
 | 
						|
          USE_XETLA: OFF
 | 
						|
          # SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS: 1
 | 
						|
        run: |
 | 
						|
          export HF_HOME=${HARNESS_HF_HOME}
 | 
						|
          export HF_DATASETS=$HARNESS_HF_HOME/datasets
 | 
						|
          export HF_DATASETS_CACHE=$HARNESS_HF_HOME/datasets
 | 
						|
          source /opt/intel/oneapi/setvars.sh
 | 
						|
          
 | 
						|
          python run_llb.py \
 | 
						|
            --model bigdl-llm \
 | 
						|
            --pretrained ${MODEL_PATH} \
 | 
						|
            --precision ${{ matrix.precision }} \
 | 
						|
            --device ${{ matrix.device }} \
 | 
						|
            --tasks ${{ matrix.task }} \
 | 
						|
            --batch_size 1 --no_cache --output_path results \
 | 
						|
            --limit 3 \          
 | 
						|
 | 
						|
      - uses: actions/upload-artifact@v3
 | 
						|
        with:
 | 
						|
          name: harness_results
 | 
						|
          path:
 | 
						|
            ${{ github.workspace }}/python/llm/dev/benchmark/harness/results/**
 | 
						|
 | 
						|
      - name: echo single result
 | 
						|
        shell: bash
 | 
						|
        
 | 
						|
        working-directory: ${{ github.workspace }}/python/llm/dev/benchmark/harness/results/
 | 
						|
        run: |
 | 
						|
          cat ${{ matrix.model_name }}/${{ matrix.device }}/${{ matrix.precision }}/${{ matrix.task }}/result.json          
 | 
						|
 | 
						|
  llm-harness-summary:
 | 
						|
    if: ${{ always() }}
 | 
						|
    needs: llm-harness-evaluation
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3
 | 
						|
      - name: Set up Python 3.9
 | 
						|
        uses: actions/setup-python@v4
 | 
						|
        with:
 | 
						|
          python-version: 3.9
 | 
						|
      - name: Install dependencies
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          pip install --upgrade pip
 | 
						|
          pip install jsonlines  pytablewriter regex          
 | 
						|
      - name: Download all results
 | 
						|
        uses: actions/download-artifact@v3
 | 
						|
        with:
 | 
						|
          name: harness_results
 | 
						|
          path: results        
 | 
						|
      - name: Summarize the results
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          ls results
 | 
						|
          python ${{ github.workspace }}/python/llm/dev/benchmark/harness/make_table_and_csv.py results          
 | 
						|
 | 
						|
  # TODO: change machine to store the results later        
 | 
						|
  llm-harness-summary-html:
 | 
						|
    if: ${{github.event_name == 'schedule' || github.event_name == 'pull_request'}}
 | 
						|
    needs: [set-matrix, llm-harness-evaluation]
 | 
						|
    runs-on: ["self-hosted", "llm", "accuracy1", "accuracy-nightly"]
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # actions/checkout@v3
 | 
						|
      - name: Set up Python 3.9
 | 
						|
        uses: actions/setup-python@v4
 | 
						|
        with:
 | 
						|
          python-version: 3.9
 | 
						|
      - name: Install dependencies
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          pip install --upgrade pip
 | 
						|
          pip install jsonlines  pytablewriter regex          
 | 
						|
      
 | 
						|
      - name: Set output path
 | 
						|
        shell: bash
 | 
						|
        run: |    
 | 
						|
          DATE=$(date +%Y-%m-%d)
 | 
						|
          OUTPUT_PATH="results_$DATE"
 | 
						|
          echo "OUTPUT_PATH=$OUTPUT_PATH" >> $GITHUB_ENV
 | 
						|
          NIGHTLY_FOLDER="/home/arda/harness-action-runners/nightly-accuracy-data"
 | 
						|
          echo "NIGHTLY_FOLDER=$NIGHTLY_FOLDER" >> $GITHUB_ENV
 | 
						|
          PR_FOLDER="/home/arda/harness-action-runners/pr-accuracy-data"
 | 
						|
          echo "PR_FOLDER=$PR_FOLDER" >> $GITHUB_ENV
 | 
						|
 | 
						|
      - name: Download all results for nightly run
 | 
						|
        if: github.event_name == 'schedule'
 | 
						|
        uses: actions/download-artifact@v3
 | 
						|
        with:
 | 
						|
          name: harness_results
 | 
						|
          path: ${{ env.NIGHTLY_FOLDER}}/${{ env.OUTPUT_PATH }}
 | 
						|
  
 | 
						|
      - name: Download all results for pr run
 | 
						|
        if: github.event_name == 'pull_request'
 | 
						|
        uses: actions/download-artifact@v3
 | 
						|
        with:
 | 
						|
          name: harness_results
 | 
						|
          path: ${{ env.PR_FOLDER}}/${{ env.OUTPUT_PATH }}
 | 
						|
 | 
						|
      # Save fp16.csv in the parent folder of env.nightly_folder
 | 
						|
      - name: Download fp16.csv for summary
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          wget https://raw.githubusercontent.com/intel-analytics/BigDL/main/python/llm/test/benchmark/harness/fp16.csv -O ${{ env.NIGHTLY_FOLDER}}/../fp16.csv
 | 
						|
          ls ${{ env.NIGHTLY_FOLDER}}/..          
 | 
						|
 | 
						|
      - name: Summarize the results for nightly run
 | 
						|
        if: github.event_name == 'schedule'
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          ls /home/arda/harness-action-runners/nightly-accuracy-data/${{ env.OUTPUT_PATH }}
 | 
						|
          pip install pandas==1.5.3
 | 
						|
          python ${{ github.workspace }}/python/llm/dev/benchmark/harness/make_table_and_csv.py ${{ env.NIGHTLY_FOLDER}}/${{ env.OUTPUT_PATH }} ${{ env.NIGHTLY_FOLDER}}
 | 
						|
          python ${{ github.workspace }}/python/llm/test/benchmark/harness/harness_csv_to_html.py -f ${{ env.NIGHTLY_FOLDER}}
 | 
						|
          python ${{ github.workspace }}/python/llm/test/benchmark/harness/update_html_in_parent_folder.py -f ${{ env.NIGHTLY_FOLDER }}          
 | 
						|
 | 
						|
      - name: Summarize the results for pull request
 | 
						|
        if: github.event_name == 'pull_request'
 | 
						|
        shell: bash
 | 
						|
        run: |
 | 
						|
          ls /home/arda/harness-action-runners/pr-accuracy-data/${{ env.OUTPUT_PATH }}
 | 
						|
          pip install pandas==1.5.3
 | 
						|
          python ${{ github.workspace }}/python/llm/dev/benchmark/harness/make_table_and_csv.py ${{ env.PR_FOLDER}}/${{ env.OUTPUT_PATH }} ${{ env.PR_FOLDER}}
 | 
						|
          python ${{ github.workspace }}/python/llm/test/benchmark/harness/harness_csv_to_html.py -f ${{ env.PR_FOLDER}}           |