From 4b1411b04f89a3d2f489922b19abb6523a1dae50 Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Wed, 24 Aug 2022 14:35:26 +0800 Subject: [PATCH] minor fixes --- CMakeLists.txt | 2 +- scripts/conda-cpu/kaldifeat/meta.yaml | 2 +- scripts/conda/kaldifeat/build.sh | 2 +- scripts/conda/kaldifeat/meta.yaml | 2 +- scripts/github_actions/generate_build_matrix.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c6ad970..92280d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ project(kaldifeat) # remember to change the version in # scripts/conda/kaldifeat/meta.yaml # scripts/conda-cpu/kaldifeat/meta.yaml -set(kaldifeat_VERSION "1.19.1") +set(kaldifeat_VERSION "1.19.2") set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") diff --git a/scripts/conda-cpu/kaldifeat/meta.yaml b/scripts/conda-cpu/kaldifeat/meta.yaml index 00d7f4c..8925a91 100644 --- a/scripts/conda-cpu/kaldifeat/meta.yaml +++ b/scripts/conda-cpu/kaldifeat/meta.yaml @@ -1,6 +1,6 @@ package: name: kaldifeat - version: "1.19.1" + version: "1.19.2" source: path: "{{ environ.get('KALDIFEAT_ROOT_DIR') }}" diff --git a/scripts/conda/kaldifeat/build.sh b/scripts/conda/kaldifeat/build.sh index 488019b..3897511 100644 --- a/scripts/conda/kaldifeat/build.sh +++ b/scripts/conda/kaldifeat/build.sh @@ -32,6 +32,6 @@ echo "gcc version: $($CC --version)" echo "nvcc version: $(nvcc --version)" export KALDIFEAT_CMAKE_ARGS="-DCMAKE_BUILD_TYPE=${KALDIFEAT_BUILD_TYPE}" -export KALDIFEAT_MAKE_ARGS="-j" +export KALDIFEAT_MAKE_ARGS="-j2" python3 setup.py install --single-version-externally-managed --record=record.txt diff --git a/scripts/conda/kaldifeat/meta.yaml b/scripts/conda/kaldifeat/meta.yaml index 122393e..17378c3 100644 --- a/scripts/conda/kaldifeat/meta.yaml +++ b/scripts/conda/kaldifeat/meta.yaml @@ -1,6 +1,6 @@ package: name: kaldifeat - version: "1.19.1" + version: "1.19.2" source: path: "{{ environ.get('KALDIFEAT_ROOT_DIR') }}" diff --git a/scripts/github_actions/generate_build_matrix.py b/scripts/github_actions/generate_build_matrix.py index 88c88bd..13b87e7 100755 --- a/scripts/github_actions/generate_build_matrix.py +++ b/scripts/github_actions/generate_build_matrix.py @@ -126,7 +126,7 @@ def generate_build_matrix(enable_cuda, for_windows, test_only_latest_torch): }, } if test_only_latest_torch: - latest = "1.12.0" + latest = "1.12.1" matrix = {latest: matrix[latest]} ans = []