From a31da203271757f06f97675113c18c67d3d0ca2e Mon Sep 17 00:00:00 2001 From: Sagar Shelke Date: Fri, 8 Nov 2024 15:27:44 -0800 Subject: [PATCH] Update version, fix minor issues (#351) This PR makes the following changes, - Update project version to `0.1.36` - Torch is python dependency. Version is updated to `2.2.0+cpu` to avoid internal CI failure - Fix message printing issue in CI --- .github/workflows/mlir-tensorrt-ci.yml | 2 +- mlir-tensorrt/Version.cmake | 2 +- mlir-tensorrt/python/requirements-dev.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mlir-tensorrt-ci.yml b/.github/workflows/mlir-tensorrt-ci.yml index 6f9be5b7e..495eb7ca8 100644 --- a/.github/workflows/mlir-tensorrt-ci.yml +++ b/.github/workflows/mlir-tensorrt-ci.yml @@ -69,7 +69,7 @@ jobs: print("Expected format is, ") print("") print("<body>") - print("NOTE: Body should start on new line. `2 spaces + enter` for new line!") + print("NOTE: Body should start on new line. '2 spaces + enter' for new line!") print("NOTE: Body should be at least two lines.") sys.exit(1) EOF diff --git a/mlir-tensorrt/Version.cmake b/mlir-tensorrt/Version.cmake index a3c6d941e..05dedb434 100644 --- a/mlir-tensorrt/Version.cmake +++ b/mlir-tensorrt/Version.cmake @@ -1,6 +1,6 @@ set(MLIR_TENSORRT_VERSION_MAJOR "0") set(MLIR_TENSORRT_VERSION_MINOR "1") -set(MLIR_TENSORRT_VERSION_PATCH "35") +set(MLIR_TENSORRT_VERSION_PATCH "36") set(MLIR_TENSORRT_VERSION "${MLIR_TENSORRT_VERSION_MAJOR}.${MLIR_TENSORRT_VERSION_MINOR}.${MLIR_TENSORRT_VERSION_PATCH}") diff --git a/mlir-tensorrt/python/requirements-dev.txt b/mlir-tensorrt/python/requirements-dev.txt index 1725afd1e..4f8cd29c7 100644 --- a/mlir-tensorrt/python/requirements-dev.txt +++ b/mlir-tensorrt/python/requirements-dev.txt @@ -14,4 +14,4 @@ nvidia-ml-py black build psutil -torch==2.1.0+cpu +torch==2.2.0+cpu