Merge pull request #92 from AMDResearch/dev

Release v1.0.7
这个提交包含在:
Cole Ramos
2023-02-21 16:41:46 -06:00
提交者 GitHub
当前提交 f251c55f62
修改 79 个文件,包含 16558 行新增2109 行删除
@@ -1,7 +1,6 @@
# This is a basic workflow to help you get started with Actions
name: analyze-workloads
name: RHEL 8
# Controls when the workflow will run
on:
@@ -19,7 +18,7 @@ jobs:
# The type of runner that the job will run on
runs-on: ubuntu-latest
container:
image: rocm/dev-ubuntu-22.04:5.3
image: colramos/target-images:rhel8
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Cancel any previous runs
@@ -27,26 +26,31 @@ jobs:
uses: styfle/cancel-workflow-action@0.11.0
- name: Install baseline OS dependencies
run: |
sudo apt-get update
sudo apt-get install -y git
sudo apt-get install -y python3-pip
sudo apt-get install -y cmake
- name: Checkout
yum -y update
yum -y install git
yum -y install python39
yum -y install cmake3
yum -y install which
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GH_PAT }}
- name: Install Python prereqs
run: |
python3 -m pip install -r requirements.txt
python3 -m pip install pyinstaller pytest pytest-cov
- name: Configure and install
python3.9 -m pip install -r requirements.txt
python3.9 -m pip install pyinstaller pytest pytest-cov mock
- name: Configure and install
run: |
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/opt/omniperf ..
make install
- name: run ctest
- name: CTest- Analyze Commands
run: |
cd build
ctest --verbose -R test_analyze_commands
- name: CTest- Analyze Workloads
run: |
cd build
ctest --verbose -R test_analyze_workloads test_saved_analysis
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions
name: analyze-commands
name: Ubuntu 20.04
# Controls when the workflow will run
on:
@@ -45,7 +45,11 @@ jobs:
cd build
cmake -DCMAKE_INSTALL_PREFIX=/opt/omniperf ..
make install
- name: Run ctest
- name: CTest- Analyze Commands
run: |
cd build
ctest --verbose -R test_analyze_commands
- name: CTest- Analyze Workloads
run: |
cd build
ctest --verbose -R test_analyze_workloads test_saved_analysis