Add update_parent_folder for nightly_perf_test (#11287)
* add update_parent_folder and change the workflow file * add update_parent_folder and change the workflow file * move to pr mode and comment the test * use one model per comfig * revert --------- Co-authored-by: Yishuo Wang <yishuo.wang@intel.com>
This commit is contained in:
parent
2e75bbccf9
commit
b61f6e3ab1
2 changed files with 54 additions and 0 deletions
6
.github/workflows/llm_performance_tests.yml
vendored
6
.github/workflows/llm_performance_tests.yml
vendored
|
|
@ -193,6 +193,12 @@ jobs:
|
||||||
cd ..
|
cd ..
|
||||||
python csv_to_html.py -f $CSV_SAVE_PATH/merged
|
python csv_to_html.py -f $CSV_SAVE_PATH/merged
|
||||||
rm -r merged_temp
|
rm -r merged_temp
|
||||||
|
|
||||||
|
- name: Update html in parent folder
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
cd python/llm/test/benchmark
|
||||||
|
python update_html_in_parent_folder.py -f $CSV_SAVE_PATH
|
||||||
|
|
||||||
- name: Check and upload results to ftp
|
- name: Check and upload results to ftp
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
48
python/llm/test/benchmark/update_html_in_parent_folder.py
Normal file
48
python/llm/test/benchmark/update_html_in_parent_folder.py
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
#
|
||||||
|
# Copyright 2016 The BigDL Authors.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Python program to update Html in parent folder
|
||||||
|
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
import argparse
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
def update_html_in_parent_folder(folder_path):
|
||||||
|
|
||||||
|
current_folder = Path(folder_path)
|
||||||
|
folder_list = [current_folder/'batch_size_1/',current_folder/'batch_size_2/',current_folder/'merged/']
|
||||||
|
|
||||||
|
# List all html files under current folder and delete them
|
||||||
|
for html_file in current_folder.glob('*.html'):
|
||||||
|
html_file.unlink()
|
||||||
|
for folder in folder_list:
|
||||||
|
# Find latest html file under batch1/batch2/merged folders
|
||||||
|
latest_html_file = max(Path(folder).glob('*.html'), key=os.path.getctime, default=None)
|
||||||
|
# Copy the latest html file to parent folder
|
||||||
|
if latest_html_file is not None:
|
||||||
|
shutil.copy(latest_html_file, current_folder)
|
||||||
|
print(latest_html_file.name)
|
||||||
|
|
||||||
|
def main():
|
||||||
|
parser = argparse.ArgumentParser(description="Update HTML in parent folder.")
|
||||||
|
parser.add_argument("-f", "--folder", type=str, help="Path to the folder")
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
update_html_in_parent_folder(args.folder)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
Loading…
Reference in a new issue