From d9040038bc2ab646c3a0ba7d64ef7b19d5dbc54a Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Sun, 15 Dec 2024 16:25:21 -0800 Subject: [PATCH] upgrade sqlalchemy version (#1748) * upgrade sqlalchemy version * replace the connection with engine in to_sql call * change the hipTes=nsor ctest syntax [ROCm/composable_kernel commit: fdfe2102304f62ec62194706a5f67766ae824dc6] --- Dockerfile | 2 +- Jenkinsfile | 4 +--- script/process_perf_data.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 83edbfb8ee..a3bf3866bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -94,7 +94,7 @@ RUN pip install --upgrade cmake==3.27.5 && \ dpkg -i dumb-init_*.deb && rm dumb-init_*.deb && \ # Install packages for processing the performance results pip3 install --upgrade pip && \ - pip3 install sqlalchemy==1.4.46 pymysql pandas==2.2.3 setuptools-rust sshtunnel==0.4.0 && \ + pip3 install sqlalchemy==2.0.36 pymysql pandas==2.2.3 setuptools-rust sshtunnel==0.4.0 && \ # Add render group groupadd -f render && \ # Install the new rocm-cmake version diff --git a/Jenkinsfile b/Jenkinsfile index f82c34afa6..87c9457fcb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -566,11 +566,9 @@ def Build_CK(Map conf=[:]){ ls -ltr CC=hipcc CXX=hipcc cmake -Bbuild . -D CMAKE_PREFIX_PATH="${env.WORKSPACE}/install" cmake --build build -- -j + ctest --test-dir build """ } - dir("hipTensor-${params.hipTensor_branch}/build"){ - sh 'ctest' - } } } } diff --git a/script/process_perf_data.py b/script/process_perf_data.py index fbfec94eef..32e2e15d7a 100644 --- a/script/process_perf_data.py +++ b/script/process_perf_data.py @@ -332,7 +332,7 @@ def main(): table_name="ck_fmha_bwd_tflops" tflops_base = get_baseline(table_name,conn) - store_new_test_result(table_name, results, testlist, branch_name, node_id, gpu_arch, compute_units, rocm_vers, hip_vers, environment, conn) + store_new_test_result(table_name, results, testlist, branch_name, node_id, gpu_arch, compute_units, rocm_vers, hip_vers, environment, sqlEngine) conn.close() #compare the results to the baseline if baseline exists