Skip to content

Commit

Permalink
kill kaldi
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed May 30, 2023
1 parent ef6162b commit d5ac1b2
Show file tree
Hide file tree
Showing 12 changed files with 8 additions and 17 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Unreleased, targetting 0.21
* [kaldi] remove experimental kaldi support

# 0.20.5 - 2023-05-26
* Various bugfix around Einsum
* Einsum now has functions to translate to MatMul and other axes manipulations
Expand Down
1 change: 0 additions & 1 deletion onnx/test_cases/qlstm_3-2-3_T3_S1/vars.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
left_context=0
right_context=0
subsampling=1
adjust_final_offset=0
IGNORE=nnef
1 change: 0 additions & 1 deletion onnx/test_cases/qrelu_1/vars.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
left_context=0
right_context=0
subsampling=1
adjust_final_offset=0
IGNORE=nnef
1 change: 0 additions & 1 deletion onnx/test_cases/qrelu_2/vars.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
left_context=0
right_context=0
subsampling=1
adjust_final_offset=0
IGNORE=nnef
1 change: 0 additions & 1 deletion onnx/test_cases/qsigmoid_1/vars.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
left_context=0
right_context=0
subsampling=1
adjust_final_offset=0
IGNORE=nnef
1 change: 0 additions & 1 deletion onnx/test_cases/qsigmoid_2/vars.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
left_context=0
right_context=0
subsampling=1
adjust_final_offset=0
IGNORE=nnef
1 change: 0 additions & 1 deletion onnx/test_cases/qtanh_1/vars.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
left_context=0
right_context=0
subsampling=1
adjust_final_offset=0
IGNORE=nnef
1 change: 0 additions & 1 deletion onnx/test_cases/qtanh_2/vars.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
left_context=0
right_context=0
subsampling=1
adjust_final_offset=0
IGNORE=nnef
1 change: 0 additions & 1 deletion onnx/test_cases/qtdnn_10x5_101_i32_biases/vars.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
left_context=1
right_context=1
subsampling=1
adjust_final_offset=0
IGNORE=nnef
10 changes: 3 additions & 7 deletions onnx/test_cases/run_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ do
then
continue
fi
unset OPTIONS IGNORE MODEL left_context right_context subsampling adjust_final_offset
unset OPTIONS IGNORE MODEL left_context right_context subsampling
. $tc/vars.sh
for file in $CACHE_FILES
do
Expand All @@ -50,15 +50,11 @@ do
options="$OPTIONS"
if [ -n "$left_context" -a "$left_context" != "0" ]
then
options="$options --kaldi-left-context $left_context"
options="$options --edge-left-context $left_context"
fi
if [ -n "$right_context" -a "$right_context" != "0" ]
then
options="$options --kaldi-right-context $right_context"
fi
if [ -n "$adjust_final_offset" -a "$adjust_final_offset" != "0" ]
then
options="$options --kaldi-adjust-final-offset $adjust_final_offset"
options="$options --edge-right-context $right_context"
fi
cmd="$TRACT_RUN \
$MODEL \
Expand Down
2 changes: 1 addition & 1 deletion post-release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

VERSION=$1
CRATES="data linalg core nnef nnef/nnef-resources pulse-opl pulse hir tensorflow onnx-opl onnx kaldi libcli cli ffi"
CRATES="data linalg core nnef nnef/nnef-resources pulse-opl pulse hir tensorflow onnx-opl onnx libcli cli ffi"

if [ `uname` = "Darwin" ]
then
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cargo install tomato-toml

CRATE=$1
VERSION=$2
CRATES="data linalg core nnef nnef/nnef-resources pulse-opl pulse hir tensorflow onnx-opl onnx kaldi libcli ffi cli"
CRATES="data linalg core nnef nnef/nnef-resources pulse-opl pulse hir tensorflow onnx-opl onnx libcli ffi cli"

if [ -z "$VERSION" ]
then
Expand Down

0 comments on commit d5ac1b2

Please sign in to comment.