diff --git a/_sources/installation/cuda-cudnn.rst.txt b/_sources/installation/cuda-cudnn.rst.txt index c9b6cb3f8..5dc78b4d5 100644 --- a/_sources/installation/cuda-cudnn.rst.txt +++ b/_sources/installation/cuda-cudnn.rst.txt @@ -615,3 +615,80 @@ The output should look like the following: Built on Wed_Sep_21_10:33:58_PDT_2022 Cuda compilation tools, release 11.8, V11.8.89 Build cuda_11.8.r11.8/compiler.31833905_0 + +CUDA 12.1 +--------- + +You can use the following commands to install CUDA 12.1. We install it +into ``/star-fj/fangjun/software/cuda-12.1.0``. You can replace it +if needed. + +.. code-block:: bash + + wget https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run + + chmod +x cuda_12.1.0_530.30.02_linux.run + + ./cuda_12.1.0_530.30.02_linux.run \ + --silent \ + --toolkit \ + --installpath=/star-fj/fangjun/software/cuda-12.1.0 \ + --no-opengl-libs \ + --no-drm \ + --no-man-page + +Install cuDNN for CUDA 12.1 +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Now, install ``cuDNN`` for CUDA 12.1. + +.. code-block:: bash + + wget https://huggingface.co/csukuangfj/cudnn/resolve/main/cudnn-linux-x86_64-8.9.5.29_cuda12-archive.tar.xz + + tar xvf cudnn-linux-x86_64-8.9.5.29_cuda12-archive.tar.xz --strip-components=1 -C /star-fj/fangjun/software/cuda-12.1.0 + +Set environment variables for CUDA 12.1 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Note that we have to set the following environment variables after installing +CUDA 11.8. You can save the following code to ``activate-cuda-12.1.sh`` +and use ``source activate-cuda-12.1.sh`` if you want to activate CUDA 12.1. + +.. code-block:: bash + + export CUDA_HOME=/star-fj/fangjun/software/cuda-12.1.0 + export PATH=$CUDA_HOME/bin:$PATH + export LD_LIBRARY_PATH=$CUDA_HOME/lib64:$LD_LIBRARY_PATH + export LD_LIBRARY_PATH=$CUDA_HOME/lib:$LD_LIBRARY_PATH + export LD_LIBRARY_PATH=$CUDA_HOME/extras/CUPTI/lib64:$LD_LIBRARY_PATH + export CUDAToolkit_ROOT_DIR=$CUDA_HOME + export CUDAToolkit_ROOT=$CUDA_HOME + + export CUDA_TOOLKIT_ROOT_DIR=$CUDA_HOME + export CUDA_TOOLKIT_ROOT=$CUDA_HOME + export CUDA_BIN_PATH=$CUDA_HOME + export CUDA_PATH=$CUDA_HOME + export CUDA_INC_PATH=$CUDA_HOME/targets/x86_64-linux + export CFLAGS=-I$CUDA_HOME/targets/x86_64-linux/include:$CFLAGS + export CUDAToolkit_TARGET_DIR=$CUDA_HOME/targets/x86_64-linux + +To check that you have installed CUDA 12.1 successfully, please run: + +.. code-block:: bash + + which nvcc + + nvcc --version + +The output should look like the following: + +.. code-block:: bash + + /star-fj/fangjun/software/cuda-12.1.0/bin/nvcc + + nvcc: NVIDIA (R) Cuda compiler driver + Copyright (c) 2005-2023 NVIDIA Corporation + Built on Tue_Feb__7_19:32:13_PST_2023 + Cuda compilation tools, release 12.1, V12.1.66 + Build cuda_12.1.r12.1/compiler.32415258_0 diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.0.rst.txt index 54e290c38..36a8712be 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.0.rst.txt @@ -2,6 +2,8 @@ torch 1.10.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.1.rst.txt index d12adf7ae..009ab57a7 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.1.rst.txt @@ -2,6 +2,8 @@ torch 1.10.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.2.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.2.rst.txt index f389a7e20..e80f2106f 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.2.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.10.2.rst.txt @@ -2,6 +2,8 @@ torch 1.10.2 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.11.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.11.0.rst.txt index 57faf9d0f..51e5e8723 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.11.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.11.0.rst.txt @@ -2,6 +2,9 @@ torch 1.11.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.12.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.12.0.rst.txt index c287c8c96..2aa47b4ef 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.12.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.12.0.rst.txt @@ -2,6 +2,9 @@ torch 1.12.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.12.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.12.1.rst.txt index d508d8113..c53e76fa6 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.12.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.12.1.rst.txt @@ -2,6 +2,9 @@ torch 1.12.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.13.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.13.0.rst.txt index f03f74e00..59d345051 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.13.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.13.0.rst.txt @@ -2,6 +2,10 @@ torch 1.13.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.13.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.13.1.rst.txt index 260950cd1..9bc5f4186 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.13.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.13.1.rst.txt @@ -2,6 +2,10 @@ torch 1.13.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.6.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.6.0.rst.txt index ec012a858..034187171 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.6.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.6.0.rst.txt @@ -2,6 +2,7 @@ torch 1.6.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.7.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.7.0.rst.txt index 5dcd18744..dd83e7957 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.7.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.7.0.rst.txt @@ -2,6 +2,7 @@ torch 1.7.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.7.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.7.1.rst.txt index eb13e985d..3432ef02f 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.7.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.7.1.rst.txt @@ -2,6 +2,8 @@ torch 1.7.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.8.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.8.0.rst.txt index 4174bf159..32531f231 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.8.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.8.0.rst.txt @@ -2,6 +2,8 @@ torch 1.8.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.8.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.8.1.rst.txt index ed8c9d764..7830f8e79 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.8.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.8.1.rst.txt @@ -2,6 +2,8 @@ torch 1.8.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.9.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.9.0.rst.txt index 52318e7cf..b4ad448c4 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.9.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.9.0.rst.txt @@ -2,6 +2,8 @@ torch 1.9.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/1.9.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/1.9.1.rst.txt index e0e9a099e..d41a8dcec 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/1.9.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/1.9.1.rst.txt @@ -2,6 +2,8 @@ torch 1.9.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20230927+cpu.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/2.0.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/2.0.0.rst.txt index e8582296d..0d2f5d0c2 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/2.0.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/2.0.0.rst.txt @@ -2,6 +2,10 @@ torch 2.0.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/2.0.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/2.0.1.rst.txt index a1d412eb7..24c14c86b 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/2.0.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/2.0.1.rst.txt @@ -2,6 +2,10 @@ torch 2.0.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-linux/2.1.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-linux/2.1.0.rst.txt index afa456639..3b98a8957 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-linux/2.1.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-linux/2.1.0.rst.txt @@ -2,6 +2,10 @@ torch 2.1.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.0.rst.txt index 0d7b7a8e7..6f5d2c6c5 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.0.rst.txt @@ -2,6 +2,8 @@ torch 1.10.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.0-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.10.0-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.1.rst.txt index d613843cc..624b73d88 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.1.rst.txt @@ -2,6 +2,8 @@ torch 1.10.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.1-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.10.1-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.2.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.2.rst.txt index 23ea61491..330ad4d96 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.2.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.10.2.rst.txt @@ -2,6 +2,8 @@ torch 1.10.2 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.2-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.2-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.10.2-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.11.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.11.0.rst.txt index 2109cad6b..a864c3ebc 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.11.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.11.0.rst.txt @@ -2,6 +2,9 @@ torch 1.11.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp310-cp310-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp38-cp38-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.12.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.12.0.rst.txt index 62d953b32..c8fff525f 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.12.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.12.0.rst.txt @@ -2,6 +2,9 @@ torch 1.12.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp310-cp310-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp38-cp38-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.12.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.12.1.rst.txt index 8f329972c..c4ca09f28 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.12.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.12.1.rst.txt @@ -2,6 +2,9 @@ torch 1.12.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp310-cp310-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp38-cp38-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.13.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.13.0.rst.txt index b850f7dbf..36fa1fc60 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.13.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.13.0.rst.txt @@ -2,6 +2,9 @@ torch 1.13.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp310-cp310-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp38-cp38-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.13.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.13.1.rst.txt index 859754b61..322be824e 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.13.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.13.1.rst.txt @@ -2,6 +2,9 @@ torch 1.13.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp310-cp310-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp38-cp38-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.6.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.6.0.rst.txt index 94d529442..338a331fd 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.6.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.6.0.rst.txt @@ -2,6 +2,7 @@ torch 1.6.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.3.dev20230726+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.7.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.7.0.rst.txt index 4d92432eb..64c239f18 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.7.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.7.0.rst.txt @@ -2,6 +2,7 @@ torch 1.7.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.3.dev20230726+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.7.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.7.1.rst.txt index 9ccd9df17..a68642942 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.7.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.7.1.rst.txt @@ -2,6 +2,8 @@ torch 1.7.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.1-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.7.1-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.8.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.8.0.rst.txt index 241d797dd..b1a7ebd2e 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.8.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.8.0.rst.txt @@ -2,6 +2,8 @@ torch 1.8.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.8.0-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.8.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.8.0-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.8.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.8.1.rst.txt index 9dfdcc434..b46187722 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.8.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.8.1.rst.txt @@ -2,6 +2,8 @@ torch 1.8.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.8.1-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.8.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.8.1-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.9.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.9.0.rst.txt index 575b01e49..3b15bae69 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.9.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.9.0.rst.txt @@ -2,6 +2,8 @@ torch 1.9.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.0-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.9.0-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/1.9.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/1.9.1.rst.txt index a5c60c479..532d32dc0 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/1.9.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/1.9.1.rst.txt @@ -2,6 +2,8 @@ torch 1.9.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.1-cp39-cp39-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.9.1-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/2.0.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/2.0.0.rst.txt index 69aef1857..1482d045e 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/2.0.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/2.0.0.rst.txt @@ -2,6 +2,10 @@ torch 2.0.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp311-cp311-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp310-cp310-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/2.0.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/2.0.1.rst.txt index 338c4f63d..731439ce0 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/2.0.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/2.0.1.rst.txt @@ -2,6 +2,10 @@ torch 2.0.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp311-cp311-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp310-cp310-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-macos/2.1.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-macos/2.1.0.rst.txt index 1df529c38..d4700e287 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-macos/2.1.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-macos/2.1.0.rst.txt @@ -2,6 +2,10 @@ torch 2.1.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-macosx_10_9_x86_64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp310-cp310-macosx_10_9_x86_64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp39-cp39-macosx_10_9_x86_64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.0.rst.txt index 5a42f4d93..da6e20488 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.0.rst.txt @@ -2,6 +2,8 @@ torch 1.10.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.0-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.10.0-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.1.rst.txt index 93c1f8fec..7e32bf4bf 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.1.rst.txt @@ -2,6 +2,8 @@ torch 1.10.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.1-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.10.1-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.2.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.2.rst.txt index 6a0c9eda9..5f1fbf1fb 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.2.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.10.2.rst.txt @@ -2,6 +2,8 @@ torch 1.10.2 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.2-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.10.2-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.10.2-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.11.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.11.0.rst.txt index 1a9f519fb..b9fe8c494 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.11.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.11.0.rst.txt @@ -2,6 +2,9 @@ torch 1.11.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp310-cp310-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.11.0-cp38-cp38-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.12.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.12.0.rst.txt index f3b11ffce..5baf24f04 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.12.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.12.0.rst.txt @@ -2,6 +2,9 @@ torch 1.12.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp310-cp310-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.0-cp38-cp38-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.12.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.12.1.rst.txt index 9d616b07d..9adaa5e82 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.12.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.12.1.rst.txt @@ -2,6 +2,9 @@ torch 1.12.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp310-cp310-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.12.1-cp38-cp38-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.13.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.13.0.rst.txt index 3370e79a7..b77a21f05 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.13.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.13.0.rst.txt @@ -2,6 +2,9 @@ torch 1.13.0 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp310-cp310-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.0-cp38-cp38-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.13.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.13.1.rst.txt index a3ca264bc..4005c7a37 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.13.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.13.1.rst.txt @@ -2,6 +2,9 @@ torch 1.13.1 ============ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp310-cp310-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.13.1-cp38-cp38-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.6.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.6.0.rst.txt index ff4542f93..9151b649e 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.6.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.6.0.rst.txt @@ -2,6 +2,7 @@ torch 1.6.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.6.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.6.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.3.dev20230726+cpu.torch1.6.0-cp38-cp38-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.7.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.7.0.rst.txt index 6657038c2..a9a806fdd 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.7.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.7.0.rst.txt @@ -2,6 +2,7 @@ torch 1.7.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.7.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.3.dev20230726+cpu.torch1.7.0-cp38-cp38-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.7.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.7.1.rst.txt index 00f85d0d5..b35edaf7d 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.7.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.7.1.rst.txt @@ -2,6 +2,8 @@ torch 1.7.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.1-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.7.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.7.1-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.8.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.8.0.rst.txt index 55fc965c9..4bab5b724 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.8.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.8.0.rst.txt @@ -2,6 +2,8 @@ torch 1.8.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.8.0-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.8.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.3.dev20230726+cpu.torch1.8.0-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.8.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.8.1.rst.txt index 3450065cc..b6466ebef 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.8.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.8.1.rst.txt @@ -2,6 +2,8 @@ torch 1.8.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.8.1-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.8.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.3.dev20230726+cpu.torch1.8.1-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.9.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.9.0.rst.txt index 45a4c33e9..8bf3ba48d 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.9.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.9.0.rst.txt @@ -2,6 +2,8 @@ torch 1.9.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.0-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.9.0-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/1.9.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/1.9.1.rst.txt index 1478d3562..b0ec6637e 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/1.9.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/1.9.1.rst.txt @@ -2,6 +2,8 @@ torch 1.9.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.1-cp39-cp39-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch1.9.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20230926+cpu.torch1.9.1-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/2.0.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/2.0.0.rst.txt index 67f9c4560..e7e4922c9 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/2.0.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/2.0.0.rst.txt @@ -2,6 +2,10 @@ torch 2.0.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp311-cp311-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp310-cp310-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.0-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/2.0.1.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/2.0.1.rst.txt index b95f7ccda..519608d2d 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/2.0.1.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/2.0.1.rst.txt @@ -2,6 +2,10 @@ torch 2.0.1 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp311-cp311-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp310-cp310-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.0.1-cp39-cp39-win_amd64.whl `_ diff --git a/_sources/installation/pre-compiled-cpu-wheels-windows/2.1.0.rst.txt b/_sources/installation/pre-compiled-cpu-wheels-windows/2.1.0.rst.txt index 290e1eba8..f9f16107e 100644 --- a/_sources/installation/pre-compiled-cpu-wheels-windows/2.1.0.rst.txt +++ b/_sources/installation/pre-compiled-cpu-wheels-windows/2.1.0.rst.txt @@ -2,6 +2,10 @@ torch 2.1.0 =========== +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-win_amd64.whl `_ +- `k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp310-cp310-win_amd64.whl `_ - `k2-1.24.4.dev20231021+cpu.torch2.1.0-cp39-cp39-win_amd64.whl `_ diff --git a/cpu.html b/cpu.html index 0fd4a708f..457de1f8f 100644 --- a/cpu.html +++ b/cpu.html @@ -1,3 +1,140 @@ +k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-win_amd64.whl
+k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl
k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-win_amd64.whl
k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-macosx_10_9_x86_64.whl
diff --git a/cuda.html b/cuda.html index 6898e3a46..6e40b4ad1 100644 --- a/cuda.html +++ b/cuda.html @@ -1,3 +1,94 @@ +k2-1.24.4.dev20231023+cuda12.1.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda12.1.torch2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda12.1.torch2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch2.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.8.torch2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.7.torch1.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.6.torch1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.6.torch1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.6.torch1.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.1.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.1.torch1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.1.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.1.torch1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.1.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.1.torch1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.1.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda11.1.torch1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231023+cuda10.2.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.7.torch1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.7.torch1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.7.torch1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.7.torch1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.7.torch1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.6.torch1.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.5.torch1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.5.torch1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.5.torch1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda11.3.torch1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
+k2-1.24.4.dev20231022+cuda10.2.torch1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
k2-1.24.4.dev20231021+cuda12.1.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
k2-1.24.4.dev20231021+cuda12.1.torch2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
k2-1.24.4.dev20231021+cuda12.1.torch2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
diff --git a/installation/cuda-cudnn.html b/installation/cuda-cudnn.html index f3d43961c..93f2ac16e 100644 --- a/installation/cuda-cudnn.html +++ b/installation/cuda-cudnn.html @@ -89,6 +89,11 @@
  • Set environment variables for CUDA 11.8
  • +
  • CUDA 12.1 +
  • FAQs
  • @@ -647,6 +652,73 @@

    Set environment variables for CUDA 11.8 +

    CUDA 12.1

    +

    You can use the following commands to install CUDA 12.1. We install it +into /star-fj/fangjun/software/cuda-12.1.0. You can replace it +if needed.

    +
    wget https://developer.download.nvidia.com/compute/cuda/12.1.0/local_installers/cuda_12.1.0_530.30.02_linux.run
    +
    +chmod +x cuda_12.1.0_530.30.02_linux.run
    +
    +./cuda_12.1.0_530.30.02_linux.run \
    +  --silent \
    +  --toolkit \
    +  --installpath=/star-fj/fangjun/software/cuda-12.1.0 \
    +  --no-opengl-libs \
    +  --no-drm \
    +  --no-man-page
    +
    +
    +
    +

    Install cuDNN for CUDA 12.1

    +

    Now, install cuDNN for CUDA 12.1.

    +
    wget https://huggingface.co/csukuangfj/cudnn/resolve/main/cudnn-linux-x86_64-8.9.5.29_cuda12-archive.tar.xz
    +
    +tar xvf cudnn-linux-x86_64-8.9.5.29_cuda12-archive.tar.xz --strip-components=1 -C /star-fj/fangjun/software/cuda-12.1.0
    +
    +
    +
    +
    +

    Set environment variables for CUDA 12.1

    +

    Note that we have to set the following environment variables after installing +CUDA 11.8. You can save the following code to activate-cuda-12.1.sh +and use source activate-cuda-12.1.sh if you want to activate CUDA 12.1.

    +
    export CUDA_HOME=/star-fj/fangjun/software/cuda-12.1.0
    +export PATH=$CUDA_HOME/bin:$PATH
    +export LD_LIBRARY_PATH=$CUDA_HOME/lib64:$LD_LIBRARY_PATH
    +export LD_LIBRARY_PATH=$CUDA_HOME/lib:$LD_LIBRARY_PATH
    +export LD_LIBRARY_PATH=$CUDA_HOME/extras/CUPTI/lib64:$LD_LIBRARY_PATH
    +export CUDAToolkit_ROOT_DIR=$CUDA_HOME
    +export CUDAToolkit_ROOT=$CUDA_HOME
    +
    +export CUDA_TOOLKIT_ROOT_DIR=$CUDA_HOME
    +export CUDA_TOOLKIT_ROOT=$CUDA_HOME
    +export CUDA_BIN_PATH=$CUDA_HOME
    +export CUDA_PATH=$CUDA_HOME
    +export CUDA_INC_PATH=$CUDA_HOME/targets/x86_64-linux
    +export CFLAGS=-I$CUDA_HOME/targets/x86_64-linux/include:$CFLAGS
    +export CUDAToolkit_TARGET_DIR=$CUDA_HOME/targets/x86_64-linux
    +
    +
    +

    To check that you have installed CUDA 12.1 successfully, please run:

    +
    which nvcc
    +
    +nvcc --version
    +
    +
    +

    The output should look like the following:

    +
    /star-fj/fangjun/software/cuda-12.1.0/bin/nvcc
    +
    +nvcc: NVIDIA (R) Cuda compiler driver
    +Copyright (c) 2005-2023 NVIDIA Corporation
    +Built on Tue_Feb__7_19:32:13_PST_2023
    +Cuda compilation tools, release 12.1, V12.1.66
    +Build cuda_12.1.r12.1/compiler.32415258_0
    +
    +
    +
    + diff --git a/installation/pre-compiled-cpu-wheels-linux/1.10.0.html b/installation/pre-compiled-cpu-wheels-linux/1.10.0.html index 12e3e69b4..c44f7f537 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.10.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.10.0.html @@ -115,6 +115,8 @@

    torch 1.10.0

      +
    • k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

    • +
    • k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

    • k2-1.24.4.dev20231021+cpu.torch1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

    • k2-1.24.4.dev20231021+cpu.torch1.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

    • k2-1.24.4.dev20230926+cpu.torch1.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

    • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.10.1.html b/installation/pre-compiled-cpu-wheels-linux/1.10.1.html index b41a8da87..3c0072e75 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.10.1.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.10.1.html @@ -115,6 +115,8 @@

      torch 1.10.1

        +
      • k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

      • +
      • k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

      • k2-1.24.4.dev20231021+cpu.torch1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

      • k2-1.24.4.dev20231021+cpu.torch1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

      • k2-1.24.4.dev20230927+cpu.torch1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

      • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.10.2.html b/installation/pre-compiled-cpu-wheels-linux/1.10.2.html index 9e4247fc8..a488d7f3a 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.10.2.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.10.2.html @@ -115,6 +115,8 @@

        torch 1.10.2

          +
        • k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

        • +
        • k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

        • k2-1.24.4.dev20231021+cpu.torch1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

        • k2-1.24.4.dev20231021+cpu.torch1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

        • k2-1.24.4.dev20230927+cpu.torch1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

        • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.11.0.html b/installation/pre-compiled-cpu-wheels-linux/1.11.0.html index cc5b3aaaf..e4a37d5b1 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.11.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.11.0.html @@ -115,6 +115,9 @@

          torch 1.11.0

            +
          • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

          • +
          • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

          • +
          • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

          • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

          • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

          • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

          • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.12.0.html b/installation/pre-compiled-cpu-wheels-linux/1.12.0.html index b0bc13fc7..ebbbc411d 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.12.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.12.0.html @@ -115,6 +115,9 @@

            torch 1.12.0

              +
            • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

            • +
            • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

            • +
            • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

            • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

            • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

            • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

            • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.12.1.html b/installation/pre-compiled-cpu-wheels-linux/1.12.1.html index 3a7895559..3f0afd1fb 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.12.1.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.12.1.html @@ -115,6 +115,9 @@

              torch 1.12.1

                +
              • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

              • +
              • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

              • +
              • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

              • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

              • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

              • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

              • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.13.0.html b/installation/pre-compiled-cpu-wheels-linux/1.13.0.html index ce292ccd9..c9f9d1b23 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.13.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.13.0.html @@ -115,6 +115,10 @@

                torch 1.13.0

                  +
                • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                • +
                • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                • +
                • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                • +
                • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.13.1.html b/installation/pre-compiled-cpu-wheels-linux/1.13.1.html index ce92568f6..e74b82e65 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.13.1.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.13.1.html @@ -115,6 +115,10 @@

                  torch 1.13.1

                    +
                  • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                  • +
                  • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                  • +
                  • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                  • +
                  • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                  • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                  • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                  • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                  • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.6.0.html b/installation/pre-compiled-cpu-wheels-linux/1.6.0.html index 925b66254..50b61f46c 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.6.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.6.0.html @@ -115,6 +115,7 @@

                    torch 1.6.0

                      +
                    • k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                    • k2-1.24.4.dev20231021+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                    • k2-1.24.4.dev20230927+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                    • k2-1.24.4.dev20230926+cpu.torch1.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                    • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.7.0.html b/installation/pre-compiled-cpu-wheels-linux/1.7.0.html index d4e560472..9814d928b 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.7.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.7.0.html @@ -115,6 +115,7 @@

                      torch 1.7.0

                        +
                      • k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                      • k2-1.24.4.dev20231021+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                      • k2-1.24.4.dev20230927+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                      • k2-1.24.4.dev20230926+cpu.torch1.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                      • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.7.1.html b/installation/pre-compiled-cpu-wheels-linux/1.7.1.html index bead708f9..b7a22b640 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.7.1.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.7.1.html @@ -115,6 +115,8 @@

                        torch 1.7.1

                          +
                        • k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                        • +
                        • k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                        • k2-1.24.4.dev20231021+cpu.torch1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                        • k2-1.24.4.dev20231021+cpu.torch1.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                        • k2-1.24.4.dev20230927+cpu.torch1.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                        • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.8.0.html b/installation/pre-compiled-cpu-wheels-linux/1.8.0.html index 059cf2192..2655a8d6e 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.8.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.8.0.html @@ -115,6 +115,8 @@

                          torch 1.8.0

                            +
                          • k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                          • +
                          • k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                          • k2-1.24.4.dev20231021+cpu.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                          • k2-1.24.4.dev20231021+cpu.torch1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                          • k2-1.24.4.dev20230927+cpu.torch1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                          • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.8.1.html b/installation/pre-compiled-cpu-wheels-linux/1.8.1.html index a1e124e84..0432c2244 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.8.1.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.8.1.html @@ -115,6 +115,8 @@

                            torch 1.8.1

                              +
                            • k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                            • +
                            • k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                            • k2-1.24.4.dev20231021+cpu.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                            • k2-1.24.4.dev20231021+cpu.torch1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                            • k2-1.24.4.dev20230927+cpu.torch1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                            • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.9.0.html b/installation/pre-compiled-cpu-wheels-linux/1.9.0.html index 68ebf4652..fb7f54f6f 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.9.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.9.0.html @@ -115,6 +115,8 @@

                              torch 1.9.0

                                +
                              • k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                              • +
                              • k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                              • k2-1.24.4.dev20231021+cpu.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                              • k2-1.24.4.dev20231021+cpu.torch1.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                              • k2-1.24.4.dev20230927+cpu.torch1.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                              • diff --git a/installation/pre-compiled-cpu-wheels-linux/1.9.1.html b/installation/pre-compiled-cpu-wheels-linux/1.9.1.html index 715c68e25..7c883c31a 100644 --- a/installation/pre-compiled-cpu-wheels-linux/1.9.1.html +++ b/installation/pre-compiled-cpu-wheels-linux/1.9.1.html @@ -115,6 +115,8 @@

                                torch 1.9.1

                                  +
                                • k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                • +
                                • k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                • k2-1.24.4.dev20231021+cpu.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                • k2-1.24.4.dev20231021+cpu.torch1.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                • k2-1.24.4.dev20230927+cpu.torch1.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                • diff --git a/installation/pre-compiled-cpu-wheels-linux/2.0.0.html b/installation/pre-compiled-cpu-wheels-linux/2.0.0.html index 4c4667470..9178249a7 100644 --- a/installation/pre-compiled-cpu-wheels-linux/2.0.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/2.0.0.html @@ -115,6 +115,10 @@

                                  torch 2.0.0

                                    +
                                  • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                  • +
                                  • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                  • +
                                  • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                  • +
                                  • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                  • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                  • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                  • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                  • diff --git a/installation/pre-compiled-cpu-wheels-linux/2.0.1.html b/installation/pre-compiled-cpu-wheels-linux/2.0.1.html index 415498b84..c069c3f58 100644 --- a/installation/pre-compiled-cpu-wheels-linux/2.0.1.html +++ b/installation/pre-compiled-cpu-wheels-linux/2.0.1.html @@ -115,6 +115,10 @@

                                    torch 2.0.1

                                      +
                                    • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                    • +
                                    • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                    • +
                                    • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                    • +
                                    • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                    • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                    • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                    • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                    • diff --git a/installation/pre-compiled-cpu-wheels-linux/2.1.0.html b/installation/pre-compiled-cpu-wheels-linux/2.1.0.html index 6e04bd5ab..b07d617b9 100644 --- a/installation/pre-compiled-cpu-wheels-linux/2.1.0.html +++ b/installation/pre-compiled-cpu-wheels-linux/2.1.0.html @@ -115,6 +115,10 @@

                                      torch 2.1.0

                                        +
                                      • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                      • +
                                      • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                      • +
                                      • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                      • +
                                      • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                      • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                      • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                      • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

                                      • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.10.0.html b/installation/pre-compiled-cpu-wheels-macos/1.10.0.html index d395bedab..781e58d18 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.10.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.10.0.html @@ -115,6 +115,8 @@

                                        torch 1.10.0

                                          +
                                        • k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-macosx_10_9_x86_64.whl

                                        • +
                                        • k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-macosx_10_9_x86_64.whl

                                        • k2-1.24.4.dev20231021+cpu.torch1.10.0-cp39-cp39-macosx_10_9_x86_64.whl

                                        • k2-1.24.4.dev20231021+cpu.torch1.10.0-cp38-cp38-macosx_10_9_x86_64.whl

                                        • k2-1.24.4.dev20230926+cpu.torch1.10.0-cp39-cp39-macosx_10_9_x86_64.whl

                                        • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.10.1.html b/installation/pre-compiled-cpu-wheels-macos/1.10.1.html index 26dd3064f..da0b66bca 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.10.1.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.10.1.html @@ -115,6 +115,8 @@

                                          torch 1.10.1

                                            +
                                          • k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-macosx_10_9_x86_64.whl

                                          • +
                                          • k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-macosx_10_9_x86_64.whl

                                          • k2-1.24.4.dev20231021+cpu.torch1.10.1-cp39-cp39-macosx_10_9_x86_64.whl

                                          • k2-1.24.4.dev20231021+cpu.torch1.10.1-cp38-cp38-macosx_10_9_x86_64.whl

                                          • k2-1.24.4.dev20230926+cpu.torch1.10.1-cp39-cp39-macosx_10_9_x86_64.whl

                                          • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.10.2.html b/installation/pre-compiled-cpu-wheels-macos/1.10.2.html index de822d302..bafc28cfb 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.10.2.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.10.2.html @@ -115,6 +115,8 @@

                                            torch 1.10.2

                                              +
                                            • k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-macosx_10_9_x86_64.whl

                                            • +
                                            • k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-macosx_10_9_x86_64.whl

                                            • k2-1.24.4.dev20231021+cpu.torch1.10.2-cp39-cp39-macosx_10_9_x86_64.whl

                                            • k2-1.24.4.dev20231021+cpu.torch1.10.2-cp38-cp38-macosx_10_9_x86_64.whl

                                            • k2-1.24.4.dev20230926+cpu.torch1.10.2-cp39-cp39-macosx_10_9_x86_64.whl

                                            • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.11.0.html b/installation/pre-compiled-cpu-wheels-macos/1.11.0.html index 393205fae..b8c7e536a 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.11.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.11.0.html @@ -115,6 +115,9 @@

                                              torch 1.11.0

                                                +
                                              • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-macosx_10_9_x86_64.whl

                                              • +
                                              • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-macosx_10_9_x86_64.whl

                                              • +
                                              • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-macosx_10_9_x86_64.whl

                                              • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp310-cp310-macosx_10_9_x86_64.whl

                                              • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp39-cp39-macosx_10_9_x86_64.whl

                                              • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp38-cp38-macosx_10_9_x86_64.whl

                                              • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.12.0.html b/installation/pre-compiled-cpu-wheels-macos/1.12.0.html index 009b86ea8..02df34f06 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.12.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.12.0.html @@ -115,6 +115,9 @@

                                                torch 1.12.0

                                                  +
                                                • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-macosx_10_9_x86_64.whl

                                                • +
                                                • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                • +
                                                • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp310-cp310-macosx_10_9_x86_64.whl

                                                • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.12.1.html b/installation/pre-compiled-cpu-wheels-macos/1.12.1.html index 0fc3cb1b1..c81a03fe2 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.12.1.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.12.1.html @@ -115,6 +115,9 @@

                                                  torch 1.12.1

                                                    +
                                                  • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-macosx_10_9_x86_64.whl

                                                  • +
                                                  • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                  • +
                                                  • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                  • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp310-cp310-macosx_10_9_x86_64.whl

                                                  • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                  • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                  • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.13.0.html b/installation/pre-compiled-cpu-wheels-macos/1.13.0.html index b91aaa7ab..45321bd14 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.13.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.13.0.html @@ -115,6 +115,9 @@

                                                    torch 1.13.0

                                                      +
                                                    • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-macosx_10_9_x86_64.whl

                                                    • +
                                                    • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                    • +
                                                    • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                    • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp310-cp310-macosx_10_9_x86_64.whl

                                                    • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                    • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                    • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.13.1.html b/installation/pre-compiled-cpu-wheels-macos/1.13.1.html index 2e9c0abbc..2ebd321ba 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.13.1.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.13.1.html @@ -115,6 +115,9 @@

                                                      torch 1.13.1

                                                        +
                                                      • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-macosx_10_9_x86_64.whl

                                                      • +
                                                      • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                      • +
                                                      • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                      • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp310-cp310-macosx_10_9_x86_64.whl

                                                      • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                      • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                      • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.6.0.html b/installation/pre-compiled-cpu-wheels-macos/1.6.0.html index be9e7caf5..ce3ddcf84 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.6.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.6.0.html @@ -115,6 +115,7 @@

                                                        torch 1.6.0

                                                          +
                                                        • k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                        • k2-1.24.4.dev20231021+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                        • k2-1.24.4.dev20230926+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                        • k2-1.24.3.dev20230726+cpu.torch1.6.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                        • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.7.0.html b/installation/pre-compiled-cpu-wheels-macos/1.7.0.html index 84c9390a8..eda7e75af 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.7.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.7.0.html @@ -115,6 +115,7 @@

                                                          torch 1.7.0

                                                            +
                                                          • k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                          • k2-1.24.4.dev20231021+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                          • k2-1.24.4.dev20230926+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                          • k2-1.24.3.dev20230726+cpu.torch1.7.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                          • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.7.1.html b/installation/pre-compiled-cpu-wheels-macos/1.7.1.html index 15b36049c..81506ca53 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.7.1.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.7.1.html @@ -115,6 +115,8 @@

                                                            torch 1.7.1

                                                              +
                                                            • k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                            • +
                                                            • k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                            • k2-1.24.4.dev20231021+cpu.torch1.7.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                            • k2-1.24.4.dev20231021+cpu.torch1.7.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                            • k2-1.24.4.dev20230926+cpu.torch1.7.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                            • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.8.0.html b/installation/pre-compiled-cpu-wheels-macos/1.8.0.html index 90819db93..16d814794 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.8.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.8.0.html @@ -115,6 +115,8 @@

                                                              torch 1.8.0

                                                                +
                                                              • k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                              • +
                                                              • k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                              • k2-1.24.4.dev20231021+cpu.torch1.8.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                              • k2-1.24.4.dev20231021+cpu.torch1.8.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                              • k2-1.24.4.dev20230926+cpu.torch1.8.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                              • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.8.1.html b/installation/pre-compiled-cpu-wheels-macos/1.8.1.html index d17538d67..fd7269ab4 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.8.1.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.8.1.html @@ -115,6 +115,8 @@

                                                                torch 1.8.1

                                                                  +
                                                                • k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                                • +
                                                                • k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                                • k2-1.24.4.dev20231021+cpu.torch1.8.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                                • k2-1.24.4.dev20231021+cpu.torch1.8.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                                • k2-1.24.4.dev20230926+cpu.torch1.8.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                                • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.9.0.html b/installation/pre-compiled-cpu-wheels-macos/1.9.0.html index 42fd4f259..bb6432c02 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.9.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.9.0.html @@ -115,6 +115,8 @@

                                                                  torch 1.9.0

                                                                    +
                                                                  • k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                                  • +
                                                                  • k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                                  • k2-1.24.4.dev20231021+cpu.torch1.9.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                                  • k2-1.24.4.dev20231021+cpu.torch1.9.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                                  • k2-1.24.4.dev20230926+cpu.torch1.9.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                                  • diff --git a/installation/pre-compiled-cpu-wheels-macos/1.9.1.html b/installation/pre-compiled-cpu-wheels-macos/1.9.1.html index b64ecef66..6a7409b59 100644 --- a/installation/pre-compiled-cpu-wheels-macos/1.9.1.html +++ b/installation/pre-compiled-cpu-wheels-macos/1.9.1.html @@ -115,6 +115,8 @@

                                                                    torch 1.9.1

                                                                      +
                                                                    • k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                                    • +
                                                                    • k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                                    • k2-1.24.4.dev20231021+cpu.torch1.9.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                                    • k2-1.24.4.dev20231021+cpu.torch1.9.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                                    • k2-1.24.4.dev20230926+cpu.torch1.9.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                                    • diff --git a/installation/pre-compiled-cpu-wheels-macos/2.0.0.html b/installation/pre-compiled-cpu-wheels-macos/2.0.0.html index 345a50427..9111ee55d 100644 --- a/installation/pre-compiled-cpu-wheels-macos/2.0.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/2.0.0.html @@ -115,6 +115,10 @@

                                                                      torch 2.0.0

                                                                        +
                                                                      • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-macosx_10_9_x86_64.whl

                                                                      • +
                                                                      • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-macosx_10_9_x86_64.whl

                                                                      • +
                                                                      • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                                      • +
                                                                      • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                                      • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp311-cp311-macosx_10_9_x86_64.whl

                                                                      • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp310-cp310-macosx_10_9_x86_64.whl

                                                                      • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                                      • diff --git a/installation/pre-compiled-cpu-wheels-macos/2.0.1.html b/installation/pre-compiled-cpu-wheels-macos/2.0.1.html index 2a448cb2b..16d02d358 100644 --- a/installation/pre-compiled-cpu-wheels-macos/2.0.1.html +++ b/installation/pre-compiled-cpu-wheels-macos/2.0.1.html @@ -115,6 +115,10 @@

                                                                        torch 2.0.1

                                                                          +
                                                                        • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-macosx_10_9_x86_64.whl

                                                                        • +
                                                                        • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-macosx_10_9_x86_64.whl

                                                                        • +
                                                                        • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                                        • +
                                                                        • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-macosx_10_9_x86_64.whl

                                                                        • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp311-cp311-macosx_10_9_x86_64.whl

                                                                        • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp310-cp310-macosx_10_9_x86_64.whl

                                                                        • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp39-cp39-macosx_10_9_x86_64.whl

                                                                        • diff --git a/installation/pre-compiled-cpu-wheels-macos/2.1.0.html b/installation/pre-compiled-cpu-wheels-macos/2.1.0.html index e1dffd28b..887b7e007 100644 --- a/installation/pre-compiled-cpu-wheels-macos/2.1.0.html +++ b/installation/pre-compiled-cpu-wheels-macos/2.1.0.html @@ -115,6 +115,10 @@

                                                                          torch 2.1.0

                                                                            +
                                                                          • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-macosx_10_9_x86_64.whl

                                                                          • +
                                                                          • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-macosx_10_9_x86_64.whl

                                                                          • +
                                                                          • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                                          • +
                                                                          • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-macosx_10_9_x86_64.whl

                                                                          • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-macosx_10_9_x86_64.whl

                                                                          • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp310-cp310-macosx_10_9_x86_64.whl

                                                                          • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp39-cp39-macosx_10_9_x86_64.whl

                                                                          • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.10.0.html b/installation/pre-compiled-cpu-wheels-windows/1.10.0.html index e1df4de04..b85efe5fa 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.10.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.10.0.html @@ -115,6 +115,8 @@

                                                                            torch 1.10.0

                                                                              +
                                                                            • k2-1.24.4.dev20231022+cpu.torch1.10.0-cp39-cp39-win_amd64.whl

                                                                            • +
                                                                            • k2-1.24.4.dev20231022+cpu.torch1.10.0-cp38-cp38-win_amd64.whl

                                                                            • k2-1.24.4.dev20231021+cpu.torch1.10.0-cp39-cp39-win_amd64.whl

                                                                            • k2-1.24.4.dev20231021+cpu.torch1.10.0-cp38-cp38-win_amd64.whl

                                                                            • k2-1.24.4.dev20230926+cpu.torch1.10.0-cp39-cp39-win_amd64.whl

                                                                            • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.10.1.html b/installation/pre-compiled-cpu-wheels-windows/1.10.1.html index 0ae70bb83..980f946d2 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.10.1.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.10.1.html @@ -115,6 +115,8 @@

                                                                              torch 1.10.1

                                                                                +
                                                                              • k2-1.24.4.dev20231022+cpu.torch1.10.1-cp39-cp39-win_amd64.whl

                                                                              • +
                                                                              • k2-1.24.4.dev20231022+cpu.torch1.10.1-cp38-cp38-win_amd64.whl

                                                                              • k2-1.24.4.dev20231021+cpu.torch1.10.1-cp39-cp39-win_amd64.whl

                                                                              • k2-1.24.4.dev20231021+cpu.torch1.10.1-cp38-cp38-win_amd64.whl

                                                                              • k2-1.24.4.dev20230926+cpu.torch1.10.1-cp39-cp39-win_amd64.whl

                                                                              • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.10.2.html b/installation/pre-compiled-cpu-wheels-windows/1.10.2.html index f4af895ee..3706a3f80 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.10.2.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.10.2.html @@ -115,6 +115,8 @@

                                                                                torch 1.10.2

                                                                                  +
                                                                                • k2-1.24.4.dev20231022+cpu.torch1.10.2-cp39-cp39-win_amd64.whl

                                                                                • +
                                                                                • k2-1.24.4.dev20231022+cpu.torch1.10.2-cp38-cp38-win_amd64.whl

                                                                                • k2-1.24.4.dev20231021+cpu.torch1.10.2-cp39-cp39-win_amd64.whl

                                                                                • k2-1.24.4.dev20231021+cpu.torch1.10.2-cp38-cp38-win_amd64.whl

                                                                                • k2-1.24.4.dev20230926+cpu.torch1.10.2-cp39-cp39-win_amd64.whl

                                                                                • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.11.0.html b/installation/pre-compiled-cpu-wheels-windows/1.11.0.html index d5d736401..1ee548e02 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.11.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.11.0.html @@ -115,6 +115,9 @@

                                                                                  torch 1.11.0

                                                                                    +
                                                                                  • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp310-cp310-win_amd64.whl

                                                                                  • +
                                                                                  • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp39-cp39-win_amd64.whl

                                                                                  • +
                                                                                  • k2-1.24.4.dev20231022+cpu.torch1.11.0-cp38-cp38-win_amd64.whl

                                                                                  • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp310-cp310-win_amd64.whl

                                                                                  • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp39-cp39-win_amd64.whl

                                                                                  • k2-1.24.4.dev20231021+cpu.torch1.11.0-cp38-cp38-win_amd64.whl

                                                                                  • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.12.0.html b/installation/pre-compiled-cpu-wheels-windows/1.12.0.html index 881a994d1..5ada3f199 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.12.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.12.0.html @@ -115,6 +115,9 @@

                                                                                    torch 1.12.0

                                                                                      +
                                                                                    • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp310-cp310-win_amd64.whl

                                                                                    • +
                                                                                    • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp39-cp39-win_amd64.whl

                                                                                    • +
                                                                                    • k2-1.24.4.dev20231022+cpu.torch1.12.0-cp38-cp38-win_amd64.whl

                                                                                    • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp310-cp310-win_amd64.whl

                                                                                    • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp39-cp39-win_amd64.whl

                                                                                    • k2-1.24.4.dev20231021+cpu.torch1.12.0-cp38-cp38-win_amd64.whl

                                                                                    • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.12.1.html b/installation/pre-compiled-cpu-wheels-windows/1.12.1.html index 032e34181..26662dd88 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.12.1.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.12.1.html @@ -115,6 +115,9 @@

                                                                                      torch 1.12.1

                                                                                        +
                                                                                      • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp310-cp310-win_amd64.whl

                                                                                      • +
                                                                                      • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp39-cp39-win_amd64.whl

                                                                                      • +
                                                                                      • k2-1.24.4.dev20231022+cpu.torch1.12.1-cp38-cp38-win_amd64.whl

                                                                                      • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp310-cp310-win_amd64.whl

                                                                                      • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp39-cp39-win_amd64.whl

                                                                                      • k2-1.24.4.dev20231021+cpu.torch1.12.1-cp38-cp38-win_amd64.whl

                                                                                      • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.13.0.html b/installation/pre-compiled-cpu-wheels-windows/1.13.0.html index 1c33094fd..ec1b87478 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.13.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.13.0.html @@ -115,6 +115,9 @@

                                                                                        torch 1.13.0

                                                                                          +
                                                                                        • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp310-cp310-win_amd64.whl

                                                                                        • +
                                                                                        • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp39-cp39-win_amd64.whl

                                                                                        • +
                                                                                        • k2-1.24.4.dev20231022+cpu.torch1.13.0-cp38-cp38-win_amd64.whl

                                                                                        • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp310-cp310-win_amd64.whl

                                                                                        • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp39-cp39-win_amd64.whl

                                                                                        • k2-1.24.4.dev20231021+cpu.torch1.13.0-cp38-cp38-win_amd64.whl

                                                                                        • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.13.1.html b/installation/pre-compiled-cpu-wheels-windows/1.13.1.html index 47568a81d..7e10152bb 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.13.1.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.13.1.html @@ -115,6 +115,9 @@

                                                                                          torch 1.13.1

                                                                                            +
                                                                                          • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp310-cp310-win_amd64.whl

                                                                                          • +
                                                                                          • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp39-cp39-win_amd64.whl

                                                                                          • +
                                                                                          • k2-1.24.4.dev20231022+cpu.torch1.13.1-cp38-cp38-win_amd64.whl

                                                                                          • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp310-cp310-win_amd64.whl

                                                                                          • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp39-cp39-win_amd64.whl

                                                                                          • k2-1.24.4.dev20231021+cpu.torch1.13.1-cp38-cp38-win_amd64.whl

                                                                                          • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.6.0.html b/installation/pre-compiled-cpu-wheels-windows/1.6.0.html index aa995212a..b58cca2dc 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.6.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.6.0.html @@ -115,6 +115,7 @@

                                                                                            torch 1.6.0

                                                                                              +
                                                                                            • k2-1.24.4.dev20231022+cpu.torch1.6.0-cp38-cp38-win_amd64.whl

                                                                                            • k2-1.24.4.dev20231021+cpu.torch1.6.0-cp38-cp38-win_amd64.whl

                                                                                            • k2-1.24.4.dev20230926+cpu.torch1.6.0-cp38-cp38-win_amd64.whl

                                                                                            • k2-1.24.3.dev20230726+cpu.torch1.6.0-cp38-cp38-win_amd64.whl

                                                                                            • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.7.0.html b/installation/pre-compiled-cpu-wheels-windows/1.7.0.html index da9ba8400..48315580d 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.7.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.7.0.html @@ -115,6 +115,7 @@

                                                                                              torch 1.7.0

                                                                                                +
                                                                                              • k2-1.24.4.dev20231022+cpu.torch1.7.0-cp38-cp38-win_amd64.whl

                                                                                              • k2-1.24.4.dev20231021+cpu.torch1.7.0-cp38-cp38-win_amd64.whl

                                                                                              • k2-1.24.4.dev20230926+cpu.torch1.7.0-cp38-cp38-win_amd64.whl

                                                                                              • k2-1.24.3.dev20230726+cpu.torch1.7.0-cp38-cp38-win_amd64.whl

                                                                                              • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.7.1.html b/installation/pre-compiled-cpu-wheels-windows/1.7.1.html index c9602486c..f29a94531 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.7.1.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.7.1.html @@ -115,6 +115,8 @@

                                                                                                torch 1.7.1

                                                                                                  +
                                                                                                • k2-1.24.4.dev20231022+cpu.torch1.7.1-cp39-cp39-win_amd64.whl

                                                                                                • +
                                                                                                • k2-1.24.4.dev20231022+cpu.torch1.7.1-cp38-cp38-win_amd64.whl

                                                                                                • k2-1.24.4.dev20231021+cpu.torch1.7.1-cp39-cp39-win_amd64.whl

                                                                                                • k2-1.24.4.dev20231021+cpu.torch1.7.1-cp38-cp38-win_amd64.whl

                                                                                                • k2-1.24.4.dev20230926+cpu.torch1.7.1-cp39-cp39-win_amd64.whl

                                                                                                • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.8.0.html b/installation/pre-compiled-cpu-wheels-windows/1.8.0.html index 0468613fa..4001f5b19 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.8.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.8.0.html @@ -115,6 +115,8 @@

                                                                                                  torch 1.8.0

                                                                                                    +
                                                                                                  • k2-1.24.4.dev20231022+cpu.torch1.8.0-cp39-cp39-win_amd64.whl

                                                                                                  • +
                                                                                                  • k2-1.24.4.dev20231022+cpu.torch1.8.0-cp38-cp38-win_amd64.whl

                                                                                                  • k2-1.24.4.dev20230926+cpu.torch1.8.0-cp39-cp39-win_amd64.whl

                                                                                                  • k2-1.24.4.dev20230926+cpu.torch1.8.0-cp38-cp38-win_amd64.whl

                                                                                                  • k2-1.24.3.dev20230726+cpu.torch1.8.0-cp39-cp39-win_amd64.whl

                                                                                                  • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.8.1.html b/installation/pre-compiled-cpu-wheels-windows/1.8.1.html index ea5ff7fc2..627a4e1ea 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.8.1.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.8.1.html @@ -115,6 +115,8 @@

                                                                                                    torch 1.8.1

                                                                                                      +
                                                                                                    • k2-1.24.4.dev20231022+cpu.torch1.8.1-cp39-cp39-win_amd64.whl

                                                                                                    • +
                                                                                                    • k2-1.24.4.dev20231022+cpu.torch1.8.1-cp38-cp38-win_amd64.whl

                                                                                                    • k2-1.24.4.dev20230926+cpu.torch1.8.1-cp39-cp39-win_amd64.whl

                                                                                                    • k2-1.24.4.dev20230926+cpu.torch1.8.1-cp38-cp38-win_amd64.whl

                                                                                                    • k2-1.24.3.dev20230726+cpu.torch1.8.1-cp39-cp39-win_amd64.whl

                                                                                                    • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.9.0.html b/installation/pre-compiled-cpu-wheels-windows/1.9.0.html index 862a378c1..beff329c8 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.9.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.9.0.html @@ -115,6 +115,8 @@

                                                                                                      torch 1.9.0

                                                                                                        +
                                                                                                      • k2-1.24.4.dev20231022+cpu.torch1.9.0-cp39-cp39-win_amd64.whl

                                                                                                      • +
                                                                                                      • k2-1.24.4.dev20231022+cpu.torch1.9.0-cp38-cp38-win_amd64.whl

                                                                                                      • k2-1.24.4.dev20231021+cpu.torch1.9.0-cp39-cp39-win_amd64.whl

                                                                                                      • k2-1.24.4.dev20231021+cpu.torch1.9.0-cp38-cp38-win_amd64.whl

                                                                                                      • k2-1.24.4.dev20230926+cpu.torch1.9.0-cp39-cp39-win_amd64.whl

                                                                                                      • diff --git a/installation/pre-compiled-cpu-wheels-windows/1.9.1.html b/installation/pre-compiled-cpu-wheels-windows/1.9.1.html index a6677d0c8..196e4468f 100644 --- a/installation/pre-compiled-cpu-wheels-windows/1.9.1.html +++ b/installation/pre-compiled-cpu-wheels-windows/1.9.1.html @@ -115,6 +115,8 @@

                                                                                                        torch 1.9.1

                                                                                                          +
                                                                                                        • k2-1.24.4.dev20231022+cpu.torch1.9.1-cp39-cp39-win_amd64.whl

                                                                                                        • +
                                                                                                        • k2-1.24.4.dev20231022+cpu.torch1.9.1-cp38-cp38-win_amd64.whl

                                                                                                        • k2-1.24.4.dev20231021+cpu.torch1.9.1-cp39-cp39-win_amd64.whl

                                                                                                        • k2-1.24.4.dev20231021+cpu.torch1.9.1-cp38-cp38-win_amd64.whl

                                                                                                        • k2-1.24.4.dev20230926+cpu.torch1.9.1-cp39-cp39-win_amd64.whl

                                                                                                        • diff --git a/installation/pre-compiled-cpu-wheels-windows/2.0.0.html b/installation/pre-compiled-cpu-wheels-windows/2.0.0.html index 043579ff0..c08924028 100644 --- a/installation/pre-compiled-cpu-wheels-windows/2.0.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/2.0.0.html @@ -115,6 +115,10 @@

                                                                                                          torch 2.0.0

                                                                                                            +
                                                                                                          • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp311-cp311-win_amd64.whl

                                                                                                          • +
                                                                                                          • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp310-cp310-win_amd64.whl

                                                                                                          • +
                                                                                                          • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp39-cp39-win_amd64.whl

                                                                                                          • +
                                                                                                          • k2-1.24.4.dev20231022+cpu.torch2.0.0-cp38-cp38-win_amd64.whl

                                                                                                          • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp311-cp311-win_amd64.whl

                                                                                                          • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp310-cp310-win_amd64.whl

                                                                                                          • k2-1.24.4.dev20231021+cpu.torch2.0.0-cp39-cp39-win_amd64.whl

                                                                                                          • diff --git a/installation/pre-compiled-cpu-wheels-windows/2.0.1.html b/installation/pre-compiled-cpu-wheels-windows/2.0.1.html index 1eec26f4e..8d6eb0bc1 100644 --- a/installation/pre-compiled-cpu-wheels-windows/2.0.1.html +++ b/installation/pre-compiled-cpu-wheels-windows/2.0.1.html @@ -115,6 +115,10 @@

                                                                                                            torch 2.0.1

                                                                                                              +
                                                                                                            • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp311-cp311-win_amd64.whl

                                                                                                            • +
                                                                                                            • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp310-cp310-win_amd64.whl

                                                                                                            • +
                                                                                                            • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp39-cp39-win_amd64.whl

                                                                                                            • +
                                                                                                            • k2-1.24.4.dev20231022+cpu.torch2.0.1-cp38-cp38-win_amd64.whl

                                                                                                            • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp311-cp311-win_amd64.whl

                                                                                                            • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp310-cp310-win_amd64.whl

                                                                                                            • k2-1.24.4.dev20231021+cpu.torch2.0.1-cp39-cp39-win_amd64.whl

                                                                                                            • diff --git a/installation/pre-compiled-cpu-wheels-windows/2.1.0.html b/installation/pre-compiled-cpu-wheels-windows/2.1.0.html index 393fadf02..73094c6f2 100644 --- a/installation/pre-compiled-cpu-wheels-windows/2.1.0.html +++ b/installation/pre-compiled-cpu-wheels-windows/2.1.0.html @@ -115,6 +115,10 @@

                                                                                                              torch 2.1.0

                                                                                                                +
                                                                                                              • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp311-cp311-win_amd64.whl

                                                                                                              • +
                                                                                                              • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp310-cp310-win_amd64.whl

                                                                                                              • +
                                                                                                              • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp39-cp39-win_amd64.whl

                                                                                                              • +
                                                                                                              • k2-1.24.4.dev20231022+cpu.torch2.1.0-cp38-cp38-win_amd64.whl

                                                                                                              • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp311-cp311-win_amd64.whl

                                                                                                              • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp310-cp310-win_amd64.whl

                                                                                                              • k2-1.24.4.dev20231021+cpu.torch2.1.0-cp39-cp39-win_amd64.whl

                                                                                                              • diff --git a/searchindex.js b/searchindex.js index a58e97b76..a7b9c85c3 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["core_concepts/index","index","installation/cuda-cudnn","installation/faqs","installation/for_developers","installation/from_source","installation/from_wheels","installation/index","installation/pre-compiled-cpu-wheels-linux/1.10.0","installation/pre-compiled-cpu-wheels-linux/1.10.1","installation/pre-compiled-cpu-wheels-linux/1.10.2","installation/pre-compiled-cpu-wheels-linux/1.11.0","installation/pre-compiled-cpu-wheels-linux/1.12.0","installation/pre-compiled-cpu-wheels-linux/1.12.1","installation/pre-compiled-cpu-wheels-linux/1.13.0","installation/pre-compiled-cpu-wheels-linux/1.13.1","installation/pre-compiled-cpu-wheels-linux/1.6.0","installation/pre-compiled-cpu-wheels-linux/1.7.0","installation/pre-compiled-cpu-wheels-linux/1.7.1","installation/pre-compiled-cpu-wheels-linux/1.8.0","installation/pre-compiled-cpu-wheels-linux/1.8.1","installation/pre-compiled-cpu-wheels-linux/1.9.0","installation/pre-compiled-cpu-wheels-linux/1.9.1","installation/pre-compiled-cpu-wheels-linux/2.0.0","installation/pre-compiled-cpu-wheels-linux/2.0.1","installation/pre-compiled-cpu-wheels-linux/2.1.0","installation/pre-compiled-cpu-wheels-linux/index","installation/pre-compiled-cpu-wheels-macos/1.10.0","installation/pre-compiled-cpu-wheels-macos/1.10.1","installation/pre-compiled-cpu-wheels-macos/1.10.2","installation/pre-compiled-cpu-wheels-macos/1.11.0","installation/pre-compiled-cpu-wheels-macos/1.12.0","installation/pre-compiled-cpu-wheels-macos/1.12.1","installation/pre-compiled-cpu-wheels-macos/1.13.0","installation/pre-compiled-cpu-wheels-macos/1.13.1","installation/pre-compiled-cpu-wheels-macos/1.6.0","installation/pre-compiled-cpu-wheels-macos/1.7.0","installation/pre-compiled-cpu-wheels-macos/1.7.1","installation/pre-compiled-cpu-wheels-macos/1.8.0","installation/pre-compiled-cpu-wheels-macos/1.8.1","installation/pre-compiled-cpu-wheels-macos/1.9.0","installation/pre-compiled-cpu-wheels-macos/1.9.1","installation/pre-compiled-cpu-wheels-macos/2.0.0","installation/pre-compiled-cpu-wheels-macos/2.0.1","installation/pre-compiled-cpu-wheels-macos/2.1.0","installation/pre-compiled-cpu-wheels-macos/index","installation/pre-compiled-cpu-wheels-windows/1.10.0","installation/pre-compiled-cpu-wheels-windows/1.10.1","installation/pre-compiled-cpu-wheels-windows/1.10.2","installation/pre-compiled-cpu-wheels-windows/1.11.0","installation/pre-compiled-cpu-wheels-windows/1.12.0","installation/pre-compiled-cpu-wheels-windows/1.12.1","installation/pre-compiled-cpu-wheels-windows/1.13.0","installation/pre-compiled-cpu-wheels-windows/1.13.1","installation/pre-compiled-cpu-wheels-windows/1.6.0","installation/pre-compiled-cpu-wheels-windows/1.7.0","installation/pre-compiled-cpu-wheels-windows/1.7.1","installation/pre-compiled-cpu-wheels-windows/1.8.0","installation/pre-compiled-cpu-wheels-windows/1.8.1","installation/pre-compiled-cpu-wheels-windows/1.9.0","installation/pre-compiled-cpu-wheels-windows/1.9.1","installation/pre-compiled-cpu-wheels-windows/2.0.0","installation/pre-compiled-cpu-wheels-windows/2.0.1","installation/pre-compiled-cpu-wheels-windows/2.1.0","installation/pre-compiled-cpu-wheels-windows/index","installation/pre-compiled-cuda-wheels-linux/1.10.0","installation/pre-compiled-cuda-wheels-linux/1.10.1","installation/pre-compiled-cuda-wheels-linux/1.10.2","installation/pre-compiled-cuda-wheels-linux/1.11.0","installation/pre-compiled-cuda-wheels-linux/1.12.0","installation/pre-compiled-cuda-wheels-linux/1.12.1","installation/pre-compiled-cuda-wheels-linux/1.13.0","installation/pre-compiled-cuda-wheels-linux/1.13.1","installation/pre-compiled-cuda-wheels-linux/1.6.0","installation/pre-compiled-cuda-wheels-linux/1.7.0","installation/pre-compiled-cuda-wheels-linux/1.7.1","installation/pre-compiled-cuda-wheels-linux/1.8.0","installation/pre-compiled-cuda-wheels-linux/1.8.1","installation/pre-compiled-cuda-wheels-linux/1.9.0","installation/pre-compiled-cuda-wheels-linux/1.9.1","installation/pre-compiled-cuda-wheels-linux/2.0.0","installation/pre-compiled-cuda-wheels-linux/2.0.1","installation/pre-compiled-cuda-wheels-linux/index","python_api/api","python_api/index","python_api/version","python_tutorials/_k2/how-to-debug","python_tutorials/_k2/index","python_tutorials/fsa/fsa","python_tutorials/fsa/index","python_tutorials/fsa_algo/fsa_algo","python_tutorials/fsa_algo/index","python_tutorials/index","python_tutorials/ragged/basics","python_tutorials/ragged/index","python_tutorials/ragged/operations"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinxcontrib.bibtex":9,sphinx:56},filenames:["core_concepts/index.rst","index.rst","installation/cuda-cudnn.rst","installation/faqs.rst","installation/for_developers.rst","installation/from_source.rst","installation/from_wheels.rst","installation/index.rst","installation/pre-compiled-cpu-wheels-linux/1.10.0.rst","installation/pre-compiled-cpu-wheels-linux/1.10.1.rst","installation/pre-compiled-cpu-wheels-linux/1.10.2.rst","installation/pre-compiled-cpu-wheels-linux/1.11.0.rst","installation/pre-compiled-cpu-wheels-linux/1.12.0.rst","installation/pre-compiled-cpu-wheels-linux/1.12.1.rst","installation/pre-compiled-cpu-wheels-linux/1.13.0.rst","installation/pre-compiled-cpu-wheels-linux/1.13.1.rst","installation/pre-compiled-cpu-wheels-linux/1.6.0.rst","installation/pre-compiled-cpu-wheels-linux/1.7.0.rst","installation/pre-compiled-cpu-wheels-linux/1.7.1.rst","installation/pre-compiled-cpu-wheels-linux/1.8.0.rst","installation/pre-compiled-cpu-wheels-linux/1.8.1.rst","installation/pre-compiled-cpu-wheels-linux/1.9.0.rst","installation/pre-compiled-cpu-wheels-linux/1.9.1.rst","installation/pre-compiled-cpu-wheels-linux/2.0.0.rst","installation/pre-compiled-cpu-wheels-linux/2.0.1.rst","installation/pre-compiled-cpu-wheels-linux/2.1.0.rst","installation/pre-compiled-cpu-wheels-linux/index.rst","installation/pre-compiled-cpu-wheels-macos/1.10.0.rst","installation/pre-compiled-cpu-wheels-macos/1.10.1.rst","installation/pre-compiled-cpu-wheels-macos/1.10.2.rst","installation/pre-compiled-cpu-wheels-macos/1.11.0.rst","installation/pre-compiled-cpu-wheels-macos/1.12.0.rst","installation/pre-compiled-cpu-wheels-macos/1.12.1.rst","installation/pre-compiled-cpu-wheels-macos/1.13.0.rst","installation/pre-compiled-cpu-wheels-macos/1.13.1.rst","installation/pre-compiled-cpu-wheels-macos/1.6.0.rst","installation/pre-compiled-cpu-wheels-macos/1.7.0.rst","installation/pre-compiled-cpu-wheels-macos/1.7.1.rst","installation/pre-compiled-cpu-wheels-macos/1.8.0.rst","installation/pre-compiled-cpu-wheels-macos/1.8.1.rst","installation/pre-compiled-cpu-wheels-macos/1.9.0.rst","installation/pre-compiled-cpu-wheels-macos/1.9.1.rst","installation/pre-compiled-cpu-wheels-macos/2.0.0.rst","installation/pre-compiled-cpu-wheels-macos/2.0.1.rst","installation/pre-compiled-cpu-wheels-macos/2.1.0.rst","installation/pre-compiled-cpu-wheels-macos/index.rst","installation/pre-compiled-cpu-wheels-windows/1.10.0.rst","installation/pre-compiled-cpu-wheels-windows/1.10.1.rst","installation/pre-compiled-cpu-wheels-windows/1.10.2.rst","installation/pre-compiled-cpu-wheels-windows/1.11.0.rst","installation/pre-compiled-cpu-wheels-windows/1.12.0.rst","installation/pre-compiled-cpu-wheels-windows/1.12.1.rst","installation/pre-compiled-cpu-wheels-windows/1.13.0.rst","installation/pre-compiled-cpu-wheels-windows/1.13.1.rst","installation/pre-compiled-cpu-wheels-windows/1.6.0.rst","installation/pre-compiled-cpu-wheels-windows/1.7.0.rst","installation/pre-compiled-cpu-wheels-windows/1.7.1.rst","installation/pre-compiled-cpu-wheels-windows/1.8.0.rst","installation/pre-compiled-cpu-wheels-windows/1.8.1.rst","installation/pre-compiled-cpu-wheels-windows/1.9.0.rst","installation/pre-compiled-cpu-wheels-windows/1.9.1.rst","installation/pre-compiled-cpu-wheels-windows/2.0.0.rst","installation/pre-compiled-cpu-wheels-windows/2.0.1.rst","installation/pre-compiled-cpu-wheels-windows/2.1.0.rst","installation/pre-compiled-cpu-wheels-windows/index.rst","installation/pre-compiled-cuda-wheels-linux/1.10.0.rst","installation/pre-compiled-cuda-wheels-linux/1.10.1.rst","installation/pre-compiled-cuda-wheels-linux/1.10.2.rst","installation/pre-compiled-cuda-wheels-linux/1.11.0.rst","installation/pre-compiled-cuda-wheels-linux/1.12.0.rst","installation/pre-compiled-cuda-wheels-linux/1.12.1.rst","installation/pre-compiled-cuda-wheels-linux/1.13.0.rst","installation/pre-compiled-cuda-wheels-linux/1.13.1.rst","installation/pre-compiled-cuda-wheels-linux/1.6.0.rst","installation/pre-compiled-cuda-wheels-linux/1.7.0.rst","installation/pre-compiled-cuda-wheels-linux/1.7.1.rst","installation/pre-compiled-cuda-wheels-linux/1.8.0.rst","installation/pre-compiled-cuda-wheels-linux/1.8.1.rst","installation/pre-compiled-cuda-wheels-linux/1.9.0.rst","installation/pre-compiled-cuda-wheels-linux/1.9.1.rst","installation/pre-compiled-cuda-wheels-linux/2.0.0.rst","installation/pre-compiled-cuda-wheels-linux/2.0.1.rst","installation/pre-compiled-cuda-wheels-linux/index.rst","python_api/api.rst","python_api/index.rst","python_api/version.rst","python_tutorials/_k2/how-to-debug.rst","python_tutorials/_k2/index.rst","python_tutorials/fsa/fsa.rst","python_tutorials/fsa/index.rst","python_tutorials/fsa_algo/fsa_algo.rst","python_tutorials/fsa_algo/index.rst","python_tutorials/index.rst","python_tutorials/ragged/basics.rst","python_tutorials/ragged/index.rst","python_tutorials/ragged/operations.rst"],objects:{"k2.CtcLoss":[[83,0,1,"","forward"]],"k2.DenseFsaVec":[[83,0,1,"","__init__"],[83,0,1,"","_from_dense_fsa_vec"],[83,1,1,"","device"],[83,1,1,"","duration"],[83,0,1,"","to"]],"k2.DeterminizeWeightPushingType":[[83,1,1,"","name"],[83,1,1,"","value"]],"k2.Fsa":[[83,0,1,"","__getattr__"],[83,0,1,"","__getitem__"],[83,0,1,"","__init__"],[83,0,1,"","__setattr__"],[83,0,1,"","__str__"],[83,0,1,"","_get_arc_post"],[83,0,1,"","_get_backward_scores"],[83,0,1,"","_get_entering_arcs"],[83,0,1,"","_get_forward_scores"],[83,0,1,"","_get_tot_scores"],[83,0,1,"","_invalidate_cache_"],[83,0,1,"","as_dict"],[83,0,1,"","convert_attr_to_ragged_"],[83,1,1,"","device"],[83,0,1,"","draw"],[83,0,1,"","from_openfst"],[83,0,1,"","from_str"],[83,0,1,"","get_arc_post"],[83,0,1,"","get_backward_scores"],[83,0,1,"","get_filler"],[83,0,1,"","get_forward_scores"],[83,0,1,"","get_tot_scores"],[83,1,1,"","grad"],[83,0,1,"","invert"],[83,0,1,"","invert_"],[83,1,1,"","num_arcs"],[83,1,1,"","properties"],[83,1,1,"","properties_str"],[83,0,1,"","rename_tensor_attribute_"],[83,1,1,"","requires_grad"],[83,0,1,"","requires_grad_"],[83,0,1,"","set_scores_stochastic_"],[83,1,1,"","shape"],[83,0,1,"","to"]],"k2.MWERLoss":[[83,0,1,"","forward"]],"k2.Nbest":[[83,0,1,"","from_lattice"],[83,0,1,"","intersect"],[83,0,1,"","top_k"],[83,0,1,"","total_scores"]],"k2.OnlineDenseIntersecter":[[83,0,1,"","__init__"],[83,0,1,"","decode"],[83,1,1,"","num_streams"]],"k2.RaggedShape":[[83,0,1,"","__eq__"],[83,0,1,"","__getitem__"],[83,0,1,"","__init__"],[83,0,1,"","__ne__"],[83,0,1,"","__repr__"],[83,0,1,"","__str__"],[83,0,1,"","compose"],[83,1,1,"","device"],[83,1,1,"","dim0"],[83,0,1,"","get_layer"],[83,0,1,"","index"],[83,0,1,"","max_size"],[83,1,1,"","num_axes"],[83,0,1,"","numel"],[83,0,1,"","regular_ragged_shape"],[83,0,1,"","remove_axis"],[83,0,1,"","row_ids"],[83,0,1,"","row_splits"],[83,0,1,"","to"],[83,0,1,"","tot_size"],[83,0,1,"","tot_sizes"]],"k2.RaggedTensor":[[83,0,1,"","__eq__"],[83,0,1,"","__getitem__"],[83,0,1,"","__getstate__"],[83,0,1,"","__init__"],[83,0,1,"","__ne__"],[83,0,1,"","__repr__"],[83,0,1,"","__setstate__"],[83,0,1,"","__str__"],[83,0,1,"","add"],[83,0,1,"","arange"],[83,0,1,"","argmax"],[83,0,1,"","cat"],[83,0,1,"","clone"],[83,1,1,"","device"],[83,1,1,"","dim0"],[83,1,1,"","dtype"],[83,1,1,"","grad"],[83,0,1,"","index"],[83,1,1,"","is_cuda"],[83,0,1,"","logsumexp"],[83,0,1,"","max"],[83,0,1,"","min"],[83,0,1,"","normalize"],[83,1,1,"","num_axes"],[83,0,1,"","numel"],[83,0,1,"","pad"],[83,0,1,"","remove_axis"],[83,0,1,"","remove_values_eq"],[83,0,1,"","remove_values_leq"],[83,1,1,"","requires_grad"],[83,0,1,"","requires_grad_"],[83,1,1,"","shape"],[83,0,1,"","sort_"],[83,0,1,"","sum"],[83,0,1,"","to"],[83,0,1,"","to_str_simple"],[83,0,1,"","tolist"],[83,0,1,"","tot_size"],[83,0,1,"","unique"],[83,1,1,"","values"]],"k2.RnntDecodingConfig":[[83,0,1,"","__init__"],[83,1,1,"","beam"],[83,1,1,"","decoder_history_len"],[83,1,1,"","max_contexts"],[83,1,1,"","max_states"],[83,1,1,"","vocab_size"]],"k2.RnntDecodingStream":[[83,0,1,"","__init__"],[83,0,1,"","__str__"]],"k2.RnntDecodingStreams":[[83,0,1,"","__init__"],[83,0,1,"","__str__"],[83,0,1,"","advance"],[83,0,1,"","format_output"],[83,0,1,"","get_contexts"],[83,0,1,"","terminate_and_flush_to_streams"]],"k2.SymbolTable":[[83,0,1,"","add"],[83,0,1,"","from_file"],[83,0,1,"","from_str"],[83,0,1,"","get"],[83,1,1,"","ids"],[83,0,1,"","merge"],[83,1,1,"","symbols"],[83,0,1,"","to_file"]],"k2.ragged":[[83,2,1,"","cat"],[83,2,1,"","create_ragged_shape2"],[83,2,1,"","create_ragged_tensor"],[83,2,1,"","index"],[83,2,1,"","index_and_sum"],[83,2,1,"","random_ragged_shape"],[83,2,1,"","regular_ragged_shape"]],"k2.ragged.RaggedShape":[[83,0,1,"","__eq__"],[83,0,1,"","__getitem__"],[83,0,1,"","__init__"],[83,0,1,"","__ne__"],[83,0,1,"","__repr__"],[83,0,1,"","__str__"],[83,0,1,"","compose"],[83,1,1,"","device"],[83,1,1,"","dim0"],[83,0,1,"","get_layer"],[83,0,1,"","index"],[83,0,1,"","max_size"],[83,1,1,"","num_axes"],[83,0,1,"","numel"],[83,0,1,"","regular_ragged_shape"],[83,0,1,"","remove_axis"],[83,0,1,"","row_ids"],[83,0,1,"","row_splits"],[83,0,1,"","to"],[83,0,1,"","tot_size"],[83,0,1,"","tot_sizes"]],"k2.ragged.RaggedTensor":[[83,0,1,"","__eq__"],[83,0,1,"","__getitem__"],[83,0,1,"","__getstate__"],[83,0,1,"","__init__"],[83,0,1,"","__ne__"],[83,0,1,"","__repr__"],[83,0,1,"","__setstate__"],[83,0,1,"","__str__"],[83,0,1,"","add"],[83,0,1,"","arange"],[83,0,1,"","argmax"],[83,0,1,"","cat"],[83,0,1,"","clone"],[83,1,1,"","device"],[83,1,1,"","dim0"],[83,1,1,"","dtype"],[83,1,1,"","grad"],[83,0,1,"","index"],[83,1,1,"","is_cuda"],[83,0,1,"","logsumexp"],[83,0,1,"","max"],[83,0,1,"","min"],[83,0,1,"","normalize"],[83,1,1,"","num_axes"],[83,0,1,"","numel"],[83,0,1,"","pad"],[83,0,1,"","remove_axis"],[83,0,1,"","remove_values_eq"],[83,0,1,"","remove_values_leq"],[83,1,1,"","requires_grad"],[83,0,1,"","requires_grad_"],[83,1,1,"","shape"],[83,0,1,"","sort_"],[83,0,1,"","sum"],[83,0,1,"","to"],[83,0,1,"","to_str_simple"],[83,0,1,"","tolist"],[83,0,1,"","tot_size"],[83,0,1,"","unique"],[83,1,1,"","values"]],k2:[[83,2,1,"","add_epsilon_self_loops"],[83,2,1,"","arc_sort"],[83,2,1,"","cat"],[83,2,1,"","closure"],[83,2,1,"","compose"],[83,2,1,"","compose_arc_maps"],[83,2,1,"","connect"],[83,2,1,"","convert_dense_to_fsa_vec"],[83,2,1,"","create_fsa_vec"],[83,2,1,"","create_sparse"],[83,2,1,"","ctc_graph"],[83,2,1,"","ctc_loss"],[83,2,1,"","ctc_topo"],[83,2,1,"","determinize"],[83,2,1,"","do_rnnt_pruning"],[83,2,1,"","expand_ragged_attributes"],[83,2,1,"","get_aux_labels"],[83,2,1,"","get_best_matching_stats"],[83,2,1,"","get_lattice"],[83,2,1,"","get_rnnt_logprobs"],[83,2,1,"","get_rnnt_logprobs_joint"],[83,2,1,"","get_rnnt_logprobs_pruned"],[83,2,1,"","get_rnnt_logprobs_smoothed"],[83,2,1,"","get_rnnt_prune_ranges"],[83,2,1,"","get_rnnt_prune_ranges_deprecated"],[83,2,1,"","index_add"],[83,2,1,"","index_fsa"],[83,2,1,"","index_select"],[83,2,1,"","intersect"],[83,2,1,"","intersect_dense"],[83,2,1,"","intersect_dense_pruned"],[83,2,1,"","intersect_device"],[83,2,1,"","invert"],[83,2,1,"","is_rand_equivalent"],[83,2,1,"","joint_mutual_information_recursion"],[83,2,1,"","levenshtein_alignment"],[83,2,1,"","levenshtein_graph"],[83,2,1,"","linear_fsa"],[83,2,1,"","linear_fsa_with_self_loops"],[83,2,1,"","linear_fst"],[83,2,1,"","linear_fst_with_self_loops"],[83,2,1,"","mutual_information_recursion"],[83,2,1,"","mwer_loss"],[83,2,1,"","one_best_decoding"],[83,2,1,"","properties_to_str"],[83,2,1,"","prune_on_arc_post"],[83,2,1,"","pruned_ranges_to_lattice"],[83,2,1,"","random_fsa"],[83,2,1,"","random_fsa_vec"],[83,2,1,"","random_paths"],[83,2,1,"","remove_epsilon"],[83,2,1,"","remove_epsilon_and_add_self_loops"],[83,2,1,"","remove_epsilon_self_loops"],[83,2,1,"","replace_fsa"],[83,2,1,"","reverse"],[83,2,1,"","rnnt_loss"],[83,2,1,"","rnnt_loss_pruned"],[83,2,1,"","rnnt_loss_simple"],[83,2,1,"","rnnt_loss_smoothed"],[83,2,1,"","shortest_path"],[83,2,1,"","simple_ragged_index_select"],[83,2,1,"","swoosh_l"],[83,2,1,"","swoosh_l_forward"],[83,2,1,"","swoosh_l_forward_and_deriv"],[83,2,1,"","swoosh_r"],[83,2,1,"","swoosh_r_forward"],[83,2,1,"","swoosh_r_forward_and_deriv"],[83,2,1,"","to_dot"],[83,2,1,"","to_str"],[83,2,1,"","to_str_simple"],[83,2,1,"","to_tensor"],[83,2,1,"","top_sort"],[83,2,1,"","trivial_graph"],[83,2,1,"","union"]]},objnames:{"0":["py","method","Python method"],"1":["py","attribute","Python attribute"],"2":["py","function","Python function"]},objtypes:{"0":"py:method","1":"py:attribute","2":"py:function"},terms:{"0":[0,4,5,6,9,10,13,15,18,20,22,26,45,64,70,72,82,83,86,88,90],"00":83,"000":83,"0000":[83,90],"0000e":83,"00490":83,"00_linux":2,"01_linux":2,"035":83,"03749":83,"03_linux":2,"04":3,"0513":90,"05_linux":2,"06":83,"06_linux":2,"07":2,"0777":90,"08":83,"08x":83,"09":2,"09_pdt_2020":2,"0_520":2,"0_bu":2,"0s":83,"0ubuntu3":86,"0x0":86,"0x00007fff29a2d6e0":86,"0x00007fff29a51365":86,"0x00007fff29b54786":86,"0x00007fff29b86b1d":86,"0x00007fff29b90b2f":86,"0x00007fff29b90ba3":86,"0x00007fff29b96291":86,"0x00007fff29b97f7f":86,"0x00007ffff2553d1d":86,"0x00007ffff78ca535":86,"0x11b93e":86,"0x11baa7":86,"0x122":86,"0x1b":86,"0x1b8676":86,"0x1eab1d":86,"0x1f4b2f":86,"0x1f4ba3":86,"0x1fa291":86,"0x1fbf7f":86,"0x2a":86,"0x3e":86,"0x49":86,"0x5025":86,"0x55555555478a":86,"0x555558d973e8":86,"0x555558db63f8":86,"0x55f05c1e378a":86,"0x56":86,"0x5b":86,"0x7a0":86,"0x7f716d321105":86,"0x7f716dc126e0":86,"0x7f716dc362e2":86,"0x7f716dd39676":86,"0x7f716dd6bb1d":86,"0x7f716dd75b2f":86,"0x7f716dd75ba3":86,"0x7f716dd7b291":86,"0x7f716dd7cf7f":86,"0x7f723b630bf7":86,"0x7f723ba72355":86,"0x7f723ba85de9":86,"0x7f723ba9f80":86,"0x7f723baa2535":86,"0x7f723baa3c8b":86,"0x7f723bb1b93e":86,"0x7f723bb1baa7":86,"0x7f723bba0f47":86,"0x7f723bba0ff":86,"0x7f723bba102b":86,"0x7f723bbe6902":86,"0x7f723bbe6add":86,"0x7f723bc0a750":86,"0x7f723bc0ac26":86,"0x7fff2913c105":86,"0x7fff29a512e2":86,"0x7fff29fd4a50":86,"0x7fff29fd6310":86,"0x7fff90765700":86,"0x7fff90f66700":86,"0x7ffff64adb40":86,"0x7ffff7458bf7":86,"0x7fffffffd5e0":86,"0x7fffffffd820":86,"0x916e0":86,"0x9e":86,"0xa3c8b":86,"0xb52e2":86,"0xb67":86,"0xe7":86,"0xf5":86,"0xfd":86,"1":[1,4,5,6,23,26,42,45,61,64,80,82,83,86,88,90,93],"10":[0,4,26,45,64,82,83,88,90,93],"100":[0,83],"1000":[83,88],"10000":83,"1011":3,"1038":3,"107":86,"1073741824":83,"109":2,"11":[0,4,5,26,45,64,82,83],"112":2,"1184088":86,"1184089":86,"119":2,"12":[0,3,4,26,45,64,82,83,88],"1225":3,"13":[26,45,64,82,83,88],"1363":83,"13_pdt_2021":2,"14":[5,83,88],"1408":86,"1439":86,"147":[3,5],"14_pdt_2022":2,"15":[0,2,5,83],"15000000":83,"16":[0,83],"16_pdt_2019":2,"17":83,"178":86,"179":86,"18":[3,4,5,83],"19":[2,83],"1931":83,"195":86,"1997":0,"19m":3,"1_465":2,"1_510":2,"1_515":2,"1d":83,"1e":83,"1s":83,"2":[1,3,5,6,8,9,11,12,13,14,26,45,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,83,86,88,90,93],"20":[0,83,88,90,93],"200":83,"2000":[0,83,88,90],"2002":0,"2005":2,"2008":0,"2011":0,"2018":86,"20180409":86,"2019":2,"2020":[2,5],"2021":[2,3],"2022":2,"209":83,"21":83,"2147483648":83,"22":83,"221":2,"2211":83,"224":86,"23":[0,2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,83],"2315":0,"23_cuda11":2,"24":[2,3,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,83],"243":2,"243_418":2,"249":86,"25":[0,83],"2500":83,"269":0,"28845127_0":2,"29":2,"29920130_0":2,"2_495":2,"3":[0,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,83,86,88,90,93],"30":[0,83,88],"300":83,"3000":[88,90],"30672275_0":2,"30978841_0":2,"30_pst_2021":2,"31":5,"311":0,"3130":90,"313261687":83,"31442593_0":2,"31833905_0":2,"32767":86,"33":2,"38":[3,4,83,86,87],"38_pdt_2019":2,"39":[0,2],"3_450":2,"4":[0,5,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,83,86,88,90,93],"40":[0,83],"4000":88,"4028e":83,"41_pst_2022":2,"437488":83,"44_cuda11":2,"45":2,"4513":90,"47":2,"49":2,"5":[0,5,68,83,86,88,90,93],"50":[0,83],"5000":[83,88],"501":83,"51":[0,2],"53":2,"559":0,"56":5,"584":0,"58_pdt_2022":2,"5981":83,"598139":83,"6":[0,4,5,26,45,64,69,70,71,72,82,83,86,90],"60":0,"61":2,"6328":0,"65":2,"69":0,"7":[0,5,6,26,45,64,71,72,80,81,82,83,86,90],"70":[0,83],"7130":90,"742":86,"746":83,"75":83,"7685":0,"7981":83,"798139":83,"8":[0,4,5,26,45,64,80,81,82,83,86,87,90],"80":0,"8000":90,"8130":90,"828":83,"8444":0,"856421616":83,"87":2,"88":0,"88290":4,"89":2,"89_440":2,"9":[0,2,26,45,64,82,83,86],"90":[0,83],"92":83,"929":86,"955":83,"98":[3,5],"99":2,"case":[4,5,83,87,90],"catch":86,"class":[0,83,88],"const":86,"default":[5,83,90],"do":[0,1,2,83,90],"enum":83,"export":[2,3,4,5],"final":[0,83,88,90],"float":[83,90,93],"function":[5,83,90],"import":[0,3,4,5,83,86,87,88],"int":[3,5,83,86,93],"long":83,"new":[4,83,86,88,90],"return":[83,88,90],"short":[0,83],"static":[3,83],"super":0,"switch":4,"throw":[3,83,86],"true":[0,83,88],"try":[3,83],"var":83,"void":[3,5],"while":[0,3,4,7,83,85],A:[1,83,89,90,93],And:83,As:[4,83],At:[0,4,83],Be:83,But:83,By:83,For:[0,1,3,7,83,86,88,90,93],If:[0,2,3,4,5,6,7,83,85,86,87,88,90,93],In:[0,3,4,5,83,86,87,88,93],It:[0,1,3,4,5,83,88,90,93],Its:[0,83,88,90],NO:[0,86],NOT:[0,3,83],Not:83,ON:[3,4,5],ONE:83,Of:83,On:83,One:83,That:[1,4,5,83,93],The:[0,2,3,4,83,86,88,90,93],Then:[83,86],There:[0,83,86,88,93],These:83,To:[0,2,4,5,83,86,88],Will:83,With:0,_:83,__closur:86,__cxa_throw:86,__file__:[4,87],__getitem__:0,__in_chrg:86,__init:4,__init__:[0,3],__libc_start_main:86,__nv_dl_tag:[3,5],__nv_dl_wrapper_t:[3,5],_c:87,_cach:83,_dep:86,_devic:83,_fun:86,_k2:[1,3,4,83,92],_media:0,_non_tensor_attr:83,_properti:83,_pyeval_evalcodewithnam:86,_pyeval_evalframedefault:86,_pyobject_maketpcal:86,_start:86,_tensor_attr:83,a_arc_map:83,a_clon:83,a_fsa:[83,90],a_fsa_1:90,a_fsa_compos:90,a_fsa_compose2:90,a_fsa_compose3:90,a_fsa_intersect2:90,a_fsa_intersect3:90,a_fsa_intersect:90,a_fsa_inv:83,a_to_b_map:83,ab:83,abbc:83,abl:[1,83,88],about:[0,5,83,85,86],abov:[0,3,4,83,85,86,88,90],accept:83,acceptor:[0,83,90],access:[3,83,90,93],accomplish:0,accord:83,accordingli:3,accumul:83,accur:83,acess:93,achiev:[0,83],acoust:83,act:83,activ:[2,83],activate_k2_debug:4,activate_k2_releas:4,actual:[0,83],acycl:83,ad:[0,1,4,83,90],add:[0,86,90],add_epsilon_self_loop:[84,90],addit:83,addition:83,advanc:4,advis:83,advisori:83,affect:83,after:[2,3,4,5,7,83,86,90],after_connect:90,after_invert:90,after_invert_aux:90,after_sort:90,afterward:83,algorithm:[0,1,83,92],align:83,all:[0,4,5,83,90],allow:83,allow_parti:83,allow_trunc:83,almost:83,along:83,alpha:[83,90],alphabet:83,alreadi:[83,90],also:[3,4,83,85,88,90],altern:[0,4,83],although:83,alwai:[0,6,83],am:83,am_only_scal:83,am_prob:83,among:88,an:[0,3,4,7,83,85,86,88,90],ani:[0,2,7,83,86,93],anoth:[0,3,4],ans_arc_map:83,answer:0,anticip:83,anymor:83,anyth:83,api:[0,1,85,88],appear:83,append:83,appli:[83,90],applic:[1,83],approach:[3,6,7,83],appropri:7,approxim:83,apropo:86,apt:5,ar:[0,3,4,5,83,85,86,87,88,90,93],arang:86,arbitrari:[0,83],arc0:0,arc10:0,arc1:0,arc2:0,arc3:0,arc4:0,arc5:0,arc6:0,arc7:0,arc8:0,arc9:0,arc:[0,83,88,90,93],arc_deriv:83,arc_idx012:83,arc_map:83,arc_map_index:83,arc_map_src:83,arc_map_token:83,arc_po:83,arc_sort:[84,91],arc_sort_single_aft:83,arc_sort_single_after_aux_label:83,arc_sort_single_befor:83,archiv:2,arcsort:5,arcsortedanddeterminist:5,arg0:83,arg:[83,86],args_in:86,argument:[83,90],argument_load:86,arithmet:83,arithmetic_cod:83,arrai:[1,83,86,93],array1:[3,5,86],arxiv:83,ascend:[83,90],aspect:83,asr:1,assert:88,assertionerror:83,assign:[83,88],associ:83,assum:[0,3,4,83],attach:[0,83,85,88],attr1:83,attr2:83,attr3:83,attr4:83,attribut:[1,83,88],attribute_nam:83,auto:86,autograd:[1,83,90],autograd_log:0,autograd_trop:0,automag:[0,88],automat:[1,83],automaticali:0,automaton:1,aux_label1:83,aux_label2:83,aux_label:[0,83,88,90],aux_label_nam:83,aux_labels2:83,aux_labels3:83,aux_labels_sym:[83,88],aux_symbol:88,auxiliari:83,avaiabl:6,avail:[4,83],averag:83,avoid:83,ax:83,axi:83,b:[0,83,88,90,93],b_arc_map:83,b_fsa:[83,90],b_fsa_1:90,b_fsa_compos:90,b_fsa_compose2:90,b_fsa_compose3:90,b_fsa_intersect2:90,b_fsa_intersect3:90,b_fsa_intersect:90,b_to_a_map:83,back:[0,83],backtrac:86,backward:[0,83],bad:86,base:[0,1,83],bash:4,basic:[83,92,94],batch:[0,1,83],batch_siz:83,baum:90,becaus:[0,83,87],becom:83,been:[83,86],befor:[0,3,4,5,83,90],before_connect:90,before_invert:90,before_invert_aux:90,before_sort:90,begin:[0,83],begin_fram:83,begin_symbol:83,behavior:83,being:83,belong:[0,83],below:[0,3,4,5,6,83,88,90],best:[0,83,90],best_path:83,between:[0,83],bin:[2,4,83,86],binari:83,bit:83,blank:[0,83],blk:83,blob:3,bo:83,bool:83,both:[0,83,87,88,90],boundari:83,breakdown:83,bring:0,bug:87,buggi:87,build:[2,3,5,6,83,86,87],build_debug:4,build_releas:[4,5],built:[2,4,85],bye:83,c:[0,2,4,5,83,86,87,88,93],c_fsa:90,c_fsa_compos:90,c_fsa_compose2:90,c_fsa_compose3:90,c_fsa_intersect2:90,c_fsa_intersect3:90,c_fsa_intersect:90,c_include_path:3,ca:0,cach:83,cached_tot_s:83,call:[0,3,83,86],call_impl:86,can:[0,1,2,4,5,6,7,83,85,86,87,88,90,93],cannot:[0,4,5,83],care:83,cast:86,castabl:83,cat:84,catchpoint:86,catmoreax:4,caus:83,caution:83,cc:[3,86],cd:[3,4,5],center:83,ceph:[2,3],certain:[0,83],cflag:2,cfunction_call_vararg:86,chang:[0,3,5,83,86,88],characterist:0,check:[2,3,4,5,83,86,90],chmod:2,choic:83,choos:[2,5,7,83],chunk:83,circular:83,cl1:0,clang:5,classmethod:83,click:93,clone:[3,4,5],closur:84,cmake:[3,4,5],co:[2,6,83,90],code:[0,2,4,83,87,88,90],col:83,col_index:[0,83],collect:[83,85],collect_env:[7,85],collis:83,column:[0,83,93],com:[1,2,4,5,83,86],combin:[0,83,90],combined_prob:83,come:[0,83],comma:83,command:[2,3,4,5,7,86,88],comment:83,common:[0,83,88],compact:83,compar:83,compat:[0,83],compil:[1,2,4,5,7,86],complet:[0,83,86],complic:83,compon:2,compos:[84,91],compose_arc_map:84,composit:[0,83,90],compress:0,comput:[0,1,2,83,90],concaten:83,concept:[1,83],conceptu:83,conda:[2,3,4,5],conda_prefix:[3,5],config:83,configur:[3,4,5,83,86],confus:83,connect:[84,91],consid:[0,6,83,86],consider:83,consist:[0,83],constant:83,constrain:83,constraint:[0,83],construct:[0,83],constructor:[0,83],contain:[0,4,83,87,90,93],content:83,context:[0,3,5,83],contigu:[83,93],contribut:83,convent:[83,88],convers:[0,83,93],convert:[0,83,90],convert_attr_to_ragged_:83,convert_dense_to_fsa_vec:84,coo:83,coordin:83,copi:[3,83,86],copyright:[2,5,86],core:[1,93],corpor:2,correct:83,correspond:[0,83,90],cost:[0,83],could:83,count:83,counterpart:83,counts_out:83,cours:83,course_arch:0,cp310:[11,12,13,14,15,23,24,25,30,31,32,33,34,42,43,44,49,50,51,52,53,61,62,63,68,69,70,71,72,80,81],cp311:[14,15,23,24,25,42,43,44,61,62,63,71,72,80,81],cp36:[8,9,10,16,17,18,19,20,21,22,27,28,29,35,36,37,38,39,40,41,46,47,48,54,55,56,57,58,59,60,65,66,67,73,74,75,76,77,78],cp36m:[8,9,10,16,17,18,19,20,21,22,27,28,29,35,36,37,38,39,40,41,46,47,48,54,55,56,57,58,59,60,65,66,67,73,74,75,76,77,78],cp37:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77],cp37m:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77],cp38:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],cp39:[8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,75,76,77,78,79,80,81],cplus_include_path:3,cpp_function:86,cpu:[1,4,5,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,83,86,87,88,90],cpython:[3,4,86,87],creat:[0,3,4,7,83,85,88],create_fsa_vec:[0,84,88,90],create_ragged_shape2:84,create_ragged_tensor:84,create_spars:84,creation:83,credit:5,cs:0,csl01:0,csr:0,csrc:[3,4,5,83,86],csukuangfj:[2,6],ctc:[1,83],ctc_graph:84,ctc_graph_modifi:83,ctc_loss:84,ctc_topo:[84,90],ctc_topo_compose_linear_fsa:83,ctc_topo_modifi:83,ctc_topo_modified_compose_linear_fsa:83,ctcloss:84,ctest:[4,5],cu117:6,cu:4,cu_ragged_test:4,cuda10:[65,66,67,68,69,70,73,74,75,76,77,78,79],cuda11:[6,68,69,70,71,72,74,80,81],cuda:[1,4,5,7,83,88,90],cuda_10:2,cuda_11:2,cuda_bin_path:2,cuda_hom:2,cuda_inc_path:2,cuda_path:2,cuda_toolkit_root:2,cuda_toolkit_root_dir:2,cudastream_t:[3,5],cudasuccess:[3,5],cudatoolkit:[2,4,5],cudnn:[1,4,5,7],current:[7,83,88],custream_st:[3,5],cutoff:83,cxx:3,d:[0,83,88,93],darwin:3,data:[0,83,93],datadir:86,dcmake_build_typ:[3,4,5],dcudnn_include_path:5,dcudnn_library_path:5,debug:[83,87,92],debugdir:86,dec:5,declin:86,decod:1,decode_st:83,decoder_dim:83,decodestateinfo:84,decoding_graph:83,decreas:[0,83],default_valu:83,defin:[83,90],definit:[83,93],delai:83,delay_penalti:83,delet:83,delta:83,demonstr:[0,90],demostr:0,denot:[0,83,90],dens:[1,83],dense_fsa:83,dense_fsa_vec:83,densefsavec:[0,84],depend:[0,83,93],deriv:83,descend:83,descent:0,describ:[0,2,4,26,45,64,82,83,90],design:[0,93],desir:83,dest:83,dest_nam:83,dest_stat:[83,93],destin:[0,83,90],detail:[0,83,86],determin:84,determinist:83,determinizeweightpushingtyp:[3,84],dev20230223:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22],dev20230224:[65,66,67,68,69,70,71,72,73,74,75,76,77,78],dev20230318:[23,80],dev20230427:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,69,70,71,72,80],dev20230430:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,69,70,71,72,80],dev20230508:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,69,70,71,72,80],dev20230524:[8,9,10,11,12,13,14,15,23,24,68,69,70,71,72,80,81],dev20230715:65,dev20230717:[65,66,67,68,69,70,73,74,75,76,77],dev20230718:[6,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],dev20230719:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24],dev20230720:[6,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],dev20230725:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],dev20230726:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],dev20230926:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],dev20230927:[9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24],dev20231021:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,59,60,61,62,63],develop:[1,2,3,7],devic:[5,88],diagraph:83,dict:83,dictat:83,did:83,differ:[0,2,3,4,5,83,88,93],differenti:83,digraph:83,dim1:83,dim:83,dim_:86,dimens:[0,83,93],direct:83,directli:[0,83,90],directori:[2,4],diretori:4,disabl:86,discard:83,disk:83,dispatch:86,displai:[83,88],distanc:83,distinct:83,divid:83,dk2_build_for_all_arch:[3,4,5],dk2_with_cuda:[4,5],dlopen:3,do_rnnt_prun:84,doc:83,document:[0,83,86,90],doe:[0,83],don:[2,83],done:[0,5,83,86],doubl:[83,90,93],download:[2,6],draw:[0,88,90],driver:2,drm:2,dropout:83,dropout_prob:83,dtype:[0,88,90,93],due:83,durat:0,dure:[83,90],dylib:3,dynam:83,e:[0,3,4,5,83,86,90],each:[0,4,83,90,93],earlier:83,earliest:83,eas:[0,90],edg:83,edu:0,eec:0,effect:83,effici:83,either:[0,83,88,90],element:[0,83,88],els:83,emit:83,empti:83,en:83,enabl:[3,5,86],encod:[0,83],encoder_dim:83,encount:[3,7],encourag:83,end:[0,83,86,88],end_fram:83,end_symbol:83,enough:5,ensur:83,enter:[0,83,86,88,90],entir:83,entri:[0,83,93],env:[3,83,86],environ:[3,5,7,85],environemt:5,eo:83,ep:83,epsilon:[83,90],epsilonfre:5,equal:[0,83],equival:83,error:[4,5,7,83,87],estim:83,etc:83,eval:[3,5],evaldevic:[3,5],evalu:83,even:[83,86,90],ever:83,everi:[0,83,88],exact:83,exactli:83,exampl:[1,83,88,90],exce:83,except:[83,86],exclus:83,execut:[4,86],exist:[0,83],exot:0,exp:[0,83],expand:83,expand_ragged_attribut:84,expect:83,explain:0,explan:0,explicitli:90,exponenti:83,express:[4,83],extend:[0,83],extens:83,extent:86,extra:[0,83],extract:[0,83],f:[3,5,6,83,86],f_0:90,f_1:90,f_2:90,f_3:90,f_i:90,factor:83,fail:[5,86],failur:5,fairli:0,fake:83,fals:[0,83,88],fangjun:[2,3,86,87],faq:[1,7],fast:83,faster:[0,4,83],featur:[0,4],fed:83,fernando:0,few:90,fewer:83,field:[1,83],fig:[0,88],figur:0,file:[4,83,86,88],filenam:83,fill:83,filler:83,filter:83,final_st:83,find:[1,4,5,83,86],finit:[0,1,83],first:[0,2,4,83,86,93],fix:[3,4,86],fix_torch:4,fj:[2,3,86,87],flexibl:0,float32:[0,83,88,90,93],float64:[83,90,93],fly:0,follow:[0,2,3,4,5,6,7,83,86,88,90,93],foo:83,foo_fil:83,forc:83,fork:4,form:83,formal:0,format:[0,83,88],formula:[83,90],forward:90,forward_scores_xxx_yyi:83,found:[4,5,83],foundat:86,four:83,fourth:93,frac:0,frame:[0,83],frame_idx_nam:83,framework:0,free:[83,86],from:[0,1,2,3,7,83,86,88,90],from_dict:83,from_openfst:0,from_str:[0,5,88,90],fsa2:0,fsa:[1,3,4,5,6,84,86,92],fsa_aux:88,fsa_aux_symbol:88,fsa_from_binary_function_tensor:83,fsa_from_unary_function_rag:83,fsa_invert:88,fsa_modifi:83,fsa_symbol:88,fsa_vec:[0,88,90],fsavec:[0,83,89,90],fst:[0,1,83,88],fstvec:83,func:86,funciton:83,function_cal:86,futur:[1,83],g:[0,3,4,5,83,86,90],gain:0,gallic:0,gather:83,gcc:[3,5],gcc_dir:3,gdb:86,gdbinit:86,gener:[0,83,88,90],get:[0,3,4,5,86,88],get_aux_label:84,get_best_matching_stat:84,get_forward_scor:91,get_lattic:84,get_properti:83,get_rnnt_logprob:84,get_rnnt_logprobs_joint:84,get_rnnt_logprobs_prun:84,get_rnnt_logprobs_smooth:84,get_rnnt_prune_rang:84,get_rnnt_prune_ranges_deprec:84,get_tot_scor:[0,91],getattr:83,getstacktrac:86,git:[3,4,5,86],github:[1,4,5,6,7,83,85,86],github_act:4,give:[0,83],given:[0,83,88,90],gnu:[4,86,87],go:[4,83],good:83,got:83,gpl:86,gplv3:86,gpu:[2,3,4,5,83,88,90],grad:0,grad_fn:83,gradient:[0,83],grahpviz:83,gram:[0,83],graph:83,graphviz:[5,83,88],greater:[0,83],gtest_filt:4,guarante:83,h:[3,5,83,86],ha:[0,3,4,5,83,86,90,93],had:83,handbook:0,handl:[0,83],happen:[0,86],hash:83,have:[0,1,2,3,4,5,83,86,87,88,90,93],head:4,help:[4,5,83,86],here:[0,83],hi:83,highest:83,highest_phone_plus_on:83,hint:83,histori:83,hit:86,hlg:83,hope:1,host:86,how:[0,2,4,6,83,87,88,90,92],howev:[0,3],hpy:83,html:[6,83,86],http:[0,1,2,4,5,6,83,86],huggingfac:[2,6],human:88,hyp:83,hyp_label:83,hyp_to_ref_map:83,hypothes:83,i:[0,2,4,83,86,90],icefal:1,id:88,idea:[0,83,93],ident:83,identifi:[0,83],ignor:83,ilabel:83,illustr:90,imag:[3,83],implement:[0,83,86,87],impli:83,implicit:83,implicitli:83,impos:83,in_out:83,inc:86,includ:[1,2,3,5,83,86],inclus:83,incorpor:83,increas:83,independ:[0,83,93],index:[0,84],index_add:84,index_add_:83,index_and_sum:84,index_fsa:84,index_select:84,index_sequ:86,index_test:4,index_test_pi:4,indic:[0,3,83],individu:83,inf:83,infer:83,infin:83,info:[83,86],inform:[0,5,83,85,86],inherit:83,initial_valu:83,inner_label:83,input:[0,83,90],ins_del_scor:83,insensit:83,insert:83,insid:[3,4,90],insight:0,instal:[1,3,4,83,88],installpath:2,instanc:[0,2,83,88,93],instead:[0,83,88],instruct:[4,86],int32:[0,83,88,93],int32_:86,int32_t:[3,5,83,86,93],int64:83,integ:[83,88],integr:1,intend:83,intent:83,interchang:0,interest:[0,87],interfac:83,intern:[0,83,86,90],internet:3,interpret:[0,83],intersect:[84,91],intersect_dens:84,intersect_dense_prun:84,intersect_devic:84,intersectdevic:83,interv:83,introduc:86,introduct:0,invalid:[5,83],invers:83,invert:[84,91],invert_:88,inverted_fsa:[83,90],invok:88,involv:83,io:6,is_contigu:83,is_rand_equival:84,isinst:83,ismonoton:83,issu:[1,4,5,83,85,86],issuecom:83,isym:83,item:83,iter:0,its:[0,83,88,90],itself:83,j5:4,j6:5,j:[4,5,83],jobnum:5,joiner:83,joint:83,joint_mutual_information_recurs:84,jupyt:88,just:[0,83,88],k24:83,k2:[2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,90,93],k2_cmake_arg:[3,5],k2_install_prefix:4,k2_make_arg:5,k2_root:4,k2r:83,k:[0,1,83],kaldi:83,keep:[0,83],kei:83,kept:83,kfinalsymbol:83,kfsapropertiesarcsortedanddeterminist:83,kind:[0,83,93],kleen:83,klogsumweightpush:83,klogweightpush:83,know:83,knoweightpush:83,known:[0,4,5,83],ktropicalweightpush:83,kuangfangjun:86,kwarg:[83,86],kwargs_in:86,l23:3,l:83,label:[0,83,90,93],labels_sym:[83,88],lambda:86,lambdat:[3,5],languag:[0,83],larg:83,larger:[5,83],largest:[0,83],last:[0,3,83,86],lat:83,later:[0,83,86,93],latest:[3,4,5,6],lattic:[1,83],law:86,layer:[0,83],layout:83,ld_library_path:[2,3],lead:83,learn:[1,4],least:[4,5,83],leav:[0,83,90],left:83,len:83,length:[83,93],less:83,let:[0,4,83,86],letter:0,level:93,levenshtein:83,levenshtein_align:84,levenshtein_graph:84,lf:1,lh:3,lib64:2,lib:[2,3,4,86,87],libc:86,libcudnn:5,libk2_log:86,libmkl_cor:3,libmkl_intel_ilp64:3,libmkl_intel_thread:3,libpython3:86,librari:[3,86,87],library_path:3,libstdc:86,libthread_db:86,licens:[5,86],like:[0,1,2,3,4,5,83,90],limit:83,line:[3,83,86],linear:83,linear_fsa:84,linear_fsa_with_self_loop:84,linear_fst:84,linear_fst_with_self_loop:84,linguist:0,link:3,linux:[2,4,5,86,87],linux_x86_64:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81],list:[0,3,83,89,93],liter:83,literatur:0,littl:0,ll:83,lm:83,lm_only_scal:83,lm_prob:83,ln:3,load:[3,83,86],local_instal:2,log:[83,87,90],log_add:[0,83],log_prob:83,log_prob_len:83,log_semir:[0,83],log_softmax:83,logadd:90,logger:86,logit:83,logprob:83,logsumexpfunct:83,longtensor:83,look:[0,2,83,87],loop:[0,83,90],loss:[1,83],loss_per_utt:83,lowercas:1,lowest:83,ls:3,lstm:83,lvcsr:0,lwp:86,m:[0,4,7,85],machin:[1,3,4,5],maco:[4,5],macosx_10_9_x86_64:[6,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],mai:[0,3,4,5,83,86,93],main:[0,2,6,83],mainli:83,make:[0,4,5,83],man:2,mandatori:83,mani:[0,1,5,83],manual:86,manylinux2014_x86_64:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],manylinux_2_17_x86_64:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],map:[0,83],mask:83,master:3,match:83,mathrm:0,matric:0,matrix:[0,83],matter:83,max:[0,90],max_active_st:83,max_arc:83,max_num_arc:83,max_num_ax:83,max_num_el:83,max_num_fsa:83,max_ord:83,max_symbol:83,max_token:[83,90],maximum:[0,83],maybeaccess:5,maybecoaccess:5,mean:[0,3,83],meaning:83,measur:83,mechan:83,mehryar:0,member:83,memori:[83,93],mention:[0,83],messag:86,method:[6,83,88],michael:0,might:83,min_active_st:83,min_col_index:83,min_num_arc:83,min_num_ax:83,min_num_el:83,min_num_fsa:83,min_token:83,miniconda3:3,minim:83,minimum:[0,83],mkdir:[4,5],mmi:1,mode:83,model:[0,83],modif:83,modifi:[83,88,90],modified_ctc_graph:83,modified_ctc_topo:83,modul:[3,86],moh97:0,mohri:0,momori:83,mon_may__3_19:2,monoton:83,more:[0,4,5,83,86,90],most:[0,3,83,86,88,90],mostli:[5,83],move:[83,88],mpr02:0,mpr08:0,much:4,multipl:[0,2,83],must:[83,88],mutual:83,mutual_information_recurs:84,mwer:83,mwer_loss:84,mwer_test:83,mwerloss:84,my:83,n:[0,83],name:[0,5,88],nan:83,natur:83,nbest:84,nbest_scal:83,ndim:83,nearli:0,necessari:83,need:[0,2,3,4,5,83,90],need_new2old_index:83,need_num_repeat:83,need_value_index:83,neg:[0,83],negat:83,neighbor:83,neither:[83,90],nest:93,net:83,network:[0,83],neural:[0,83],new2old_index:83,new_fsa:83,newli:83,next:[0,83,86],ngram_ord:83,nnet_output:[0,83],non:[0,83],none:[83,88],nonempti:5,nor:[83,90],normal:[0,4,90],notat:83,note:[0,2,4,83,88,90],notebook:88,noth:83,now:[0,2,83],npath:83,num:83,num_aux_label:83,num_class:83,num_fram:83,num_fsa:[83,88],num_path:83,num_repeat:83,num_row:0,num_stat:[83,88],num_symbol:83,numax:83,number:[0,83,90,93],numer:83,nvcc:2,nvidia:[2,5],nyu:0,o:[0,83],object:[83,86,88],obtain:[85,90],obviou:83,occup:83,occupi:83,oct:3,odd:83,off:[4,5],offlin:88,offset:83,often:[83,90],ok:83,olabel:83,old:3,omit:83,onc:[4,83],one:[0,3,4,5,6,83,88,90],one_best_decod:84,onli:[0,4,5,83,90,93],onlin:[83,86],onlinedenseintersect:84,onto:83,op:83,open:[86,87],openfst:[0,83],opengl:2,oper:[0,83,86,92,94],oppos:83,opposit:[0,83],optim:[83,86],option:[4,5,83,90],order:[0,83,86,88,90],org:[6,83,86],origin:83,orign:83,osym:83,other:[0,1,4,83,86,90],otherwis:[4,5,83,88,90],our:[83,86],out:[0,83,86],out_fsa:83,output:[0,2,4,5,7,83,85,86,90],output_beam:83,outsid:83,over:[0,83],overal:83,overflow:83,overload:83,overrid:83,own:83,p:83,packag:[3,87],pad:0,padding_valu:83,page:[0,2,4,26,45,64,82],pair:[0,83],parallel:[0,5,83],parallelli:83,param:83,paramet:[0,83],part:[0,83,86,93],partial:0,particular:83,partli:83,pass:[3,4,5,83],past:83,path:[0,2,4,83,86,90],path_scor:83,pattern:83,pdf:[0,83],penal:83,penalti:83,per:[83,90],pereira:0,perform:83,permit:86,phone:83,pickl:83,piec:83,pip3:5,pip:[4,5,6,83,88],place:[3,83,88],plan:[4,5],platform:6,pleas:[0,2,3,4,5,6,7,83,85,86,87,88],plu:83,pmatrix:0,png:83,point:[0,83],pose:0,posit:[0,83],possibl:[0,83],post:[7,83],posterior:83,postscript:0,practic:[0,83],pre:[1,7],preced:83,precis:[83,90],predict:[0,83],prefix:83,prepar:[5,83],present:[83,93],prevent:83,previous:83,print:[0,4,5,83,86,87,88,90],prior:83,prob:[0,83],probabl:[0,3,83,87],problem:83,process:[0,1,4,83,86],prod:2,produc:[0,83],produr:83,program:86,propag:[0,83],properti:88,properties_str:5,properties_to_str:84,protect:86,provid:[0,6,7,83,85],prune:83,prune_on_arc_post:84,prune_rang:83,pruned_ranges_to_lattic:84,pseudo:[0,83],pub:0,pull:83,purpos:[0,83],push:83,put:83,pwd:4,px:83,px_grad:83,px_sum:83,py38:[86,87],py:[3,4,5,83,86],py_bytesmain:86,py_grad:83,py_runmain:86,py_sum:83,pybind11:[86,87],pybind11_url:3,pybindraggedani:86,pycfunction_cal:86,pyenv:86,pyeval_evalcod:86,pyeval_evalcodeex:86,pyobject_getitem:86,pyrun_fileexflag:86,pyrun_simplefileexflag:86,python3:[3,4,5,7,83,85,86,87],python:[0,1,3,4,5,83,85,86,87,88],pythonpath:4,pytorch:[0,1,4,5,6,83,85,87,93],quantiti:83,queri:83,question:0,quit:[0,83],r11:2,r:[2,4,5],rag:[1,84,88,90,92,93],ragged_attribute_nam:83,ragged_label_nam:83,ragged_tensor:83,ragged_test:4,raggedani:[83,86],raggedarc:83,raggedint:88,raggedshap:[84,93],raggedshapeopstest:4,raggedtensor:[0,84,86,90],rais:83,ram:5,random:83,random_fsa:84,random_fsa_vec:84,random_path:84,random_ragged_shap:84,randomli:83,randomraggedshap:83,rang:[3,5,83],rate:83,rather:[0,83],ratio:83,re:[3,4,83],reach:83,reachabl:83,read:[5,83,86],readabl:88,readi:5,real:[0,83],rearrang:83,reason:[3,83],receiv:83,recent:[3,86],recip:1,recogn:83,recognit:[0,1],recommend:[1,4,7,83],reconstruct:83,record:83,recurs:83,redistribut:86,reduc:[5,83],reduct:83,ref:83,ref_label:83,ref_text:83,refer:[1,5,83,88,90],referenc:3,reflect:83,regular:[0,4,83],regular_ragged_shap:84,reinterpret:[83,90,93],rel:83,relat:[0,83,86],releas:[2,3,5],reli:83,remain:[0,86],remov:[83,90],remove_ep:83,remove_epsilon:84,remove_epsilon_and_add_self_loop:84,remove_epsilon_self_loop:84,remove_fil:83,renam:83,rename_tensor_attribute_:83,render:83,repeat:83,replac:[2,83],replace_fsa:84,replic:83,repo:4,report:[1,83,86],repositori:4,repost:0,repres:[0,83,88],represent:83,request:83,requir:[0,5,83,88,90],requires_grad_:0,rescor:1,reshap:83,resid:88,resolv:[2,6],resourc:86,respect:[0,83],rest:83,result:[0,83,88,90],ret_arc_map:83,return_grad:83,returned_tensor:83,revers:84,revisit:0,rewritten:83,rf:3,right:83,rilei:0,risk:83,rm:3,rnn:83,rnnt:83,rnnt_loss:84,rnnt_loss_prun:84,rnnt_loss_simpl:84,rnnt_loss_smooth:84,rnnt_type:83,rnntdecodingconfig:84,rnntdecodingstream:84,root:[86,87],row:[0,83],row_id:0,row_ids1:83,row_ids2:83,row_index:[0,83],row_split:0,row_splits1:0,row_splits2:0,rpath:3,rule:83,run:[2,3,4,5,83,85,86,88],runtimeerror:[83,86],rwxrwxr:3,s1:90,s2:90,s:[0,3,4,5,83,88,90],s_begin:83,s_end:83,s_rang:83,safe:86,sai:[0,4,5,83],said:83,same:[0,1,3,83,86,88,93],sampl:83,satisf:83,satisfi:83,save:[0,2,83,88],scalar:83,scale:[83,90],score:[0,83,90,93],scores_onli:83,screenshot:88,script:4,seamlessli:1,search:[83,86],search_beam:83,second:[0,4,83,93],section:[2,86],secur:86,see:[0,3,4,6,83,86,87,93],seed:83,seen:87,segment:83,select:[0,83],self:[83,86,88,90],semant:83,semir:[1,83,90],semirng:83,sens:[0,83],sentenc:83,separ:83,seq:83,seqfram:83,seqframe_idx_nam:83,sequenc:83,sequence_index:83,serial:83,set:[0,3,5,83,86,90],set_row_id:83,set_scores_stochastic_:83,setup:[3,4,5,83],sever:[6,83],sh1:2,sh:[2,4],shape1:83,shape2:83,shape3:83,shape:[0,88,93],share:[5,83,87],shared_ptr:[3,5],shell:86,sherpa:4,shorter:83,shortest:[0,83],shortest_path:84,should:[2,4,83],show:[0,3,6,86,88],shown:[0,88,90],side:83,sign:[0,83],silent:2,similar:83,similarli:[0,87],simpili:4,simpl:[1,83],simple_fsa:0,simple_fst:0,simple_ragged_index_select:84,simpli:83,simplifi:83,simul:0,sinc:[0,83,86,90],singl:[0,83,89,90],singleton:83,site:[3,87],size:[0,83],skip:83,slice:83,slightli:83,slow:83,smaller:83,snowfal:83,so:[0,4,5,83,86,87],softmax:[0,83],softwar:[2,3,86],solut:3,some:[0,4,5,83,86],someth:[3,83],sort:[83,90],sorted_fsa:[83,90],sorted_fsa_2:83,sorted_match_a:83,sorted_match_ref:83,sourc:[0,1,2,3,4,6,7,83,86,87],space:83,spars:[0,83],sparse_coo:83,special:[0,83,90],specif:[4,83],specifi:[0,83],speech:[0,1],split:83,springer:0,sqcup:0,src:[83,86],src_idx01:83,src_idx0:83,src_name:83,src_state:[83,93],src_stream:83,stabl:83,stack:[83,86],staff:3,stage:83,stai:83,stand:83,standard:83,star:[2,86,87],start:[0,3,83,86,90],start_fram:83,state:[0,1,83,88,90],stateless:83,statist:83,std:[3,5,86],step1_arc_map:83,step2_arc_map:83,step:[83,86,90],still:83,stop:86,store:[0,83,93],str:83,straightforward:[0,3,90],stream:83,stride:83,string:[4,83,88],strip:2,struct:93,structur:[0,83,93],sub:[83,93],sub_shap:83,sub_shape2:83,sublist:83,subsampl:83,subsampling_factor:83,subsect:90,subsequ:83,subset:[0,83],subtract:83,succe:83,success:[4,83],successfulli:[2,5],sudo:[2,5],suffici:2,suffix:83,suggest:5,suitabl:2,sum_t:83,sumbackward0:83,sumfunct:83,summar:0,summari:[0,3,87],sun_jul_28_19:2,supervis:83,supervision_seg:83,suppli:83,support:[0,1,2,4,5,6,83,88,90],suppos:[0,6,86],svg:[0,83,88,90],swap:[83,88,90],swoosh_l:84,swoosh_l_forward:84,swoosh_l_forward_and_deriv:84,swoosh_r:84,swoosh_r_forward:84,swoosh_r_forward_and_deriv:84,sym_str:88,symbol:[0,86],symbol_begin_rang:83,symbol_range_begin:83,symbol_seq_len:83,symbolt:[84,88],symlink:3,system:[2,3],t2s2c_shape:83,t:[0,2,83,86],t_begin:83,t_end:83,tab:83,tabl:83,take:[0,83],taken:83,tar:2,target:[2,83],target_length:83,task:[0,83],tc445_37:2,tell:[0,7,83,88],temperatur:83,tensor:[0,1,83,86,88,90,92,93],tensorflow:[0,1,93],term:83,termin:83,termination_symbol:83,test:[4,5,83,86,88],text:83,tf:[0,93],tgz:2,th:83,than:[0,4,5,83,90],thei:[0,4,83,87,93],them:[0,7,83,90],themselv:83,theoret:83,therefor:0,thi:[0,2,3,4,6,26,45,64,82,83,86,88,90],thing:[0,86],third:93,those:83,thread:86,three:[0,83,88],threshold:83,threshold_prob:83,through:[0,83],thrown:86,thu:83,thu_feb_10_18:2,thu_nov_18_09:2,tie:90,time2stream2context_shap:83,time:[0,1,5,83],time_seq_len:83,titl:[83,88,90],tmp:3,to_dot:[84,88],to_str:84,to_str_ful:83,to_str_simpl:84,to_tensor:84,togeth:83,token:83,told:[0,93],toler:83,too:[3,83],tool:2,toolkit:[1,2,4,5],top:83,top_sort:84,topolog:83,topsort:5,topsortedandacycl:5,torch1:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],torch2:[6,23,24,25,42,43,44,61,62,63,80,81],torch:[0,4,6,7,26,45,64,82,83,85,86,87,88,90,93],torch_stabl:6,tot_context:83,tot_scor:83,total:[0,83],total_num_paths_of_current_batch:83,total_scor:0,totsiz:83,trace:86,traceback:[3,86],track:0,tradit:83,train:83,transcript:83,transduc:[0,1,83,90],transfer:83,transit:83,treat:[83,90],treat_epsilons_speci:[83,90],tri:83,trivial:83,trivial_graph:84,tropic:[83,90],tropical_semir:90,truncat:83,tt:3,tupl:[83,88],turn:[0,83],tutori:[1,88,90],two:[0,3,4,5,7,83,88,90,93],txt:5,type:[3,4,5,83,86,88,93],typic:83,ubuntu:[3,86],ultim:83,un:83,unabl:86,unaffect:83,unchang:83,undefin:83,under:83,underli:[83,86],underlin:83,underscor:[83,88],understand:83,unigram:83,uninstal:5,union:84,uniqu:0,unit:83,unless:83,unlik:83,unlimit:83,unnorm:83,unsign:90,unsort:[83,90],up:[0,5,83],updat:[0,3,83],url:0,us:[0,1,2,4,5,6,7,83,85,86,87,88,90,93],usag:83,use_double_scor:[0,83,90],use_log:83,user:[0,3,4,5,83],usr:[83,86],usual:[0,83],util:[7,83,85],utt:83,utter:83,v10:2,v11:2,v2:86,v8:2,valid:[5,83],valu:[0,5,88,90,93],value_index:83,value_indexes2:83,valueerror:83,variabl:3,varianc:83,vec:83,vector:[1,83,88],verbos:4,veri:[3,83],version:[1,2,5,6,7,83,84,86],via:[83,88],view:[83,86,88],virtual:83,visibl:0,visit:6,visual:[0,83],vocab:83,vocabulari:83,void_typ:86,vs:[3,5,83,86],w:0,wa:[0,4,83,85,86,93],wai:[0,3,83,87],want:[0,2,5,6,83,90],warn:86,warranti:86,wave:83,we:[0,1,2,4,5,6,7,83,86,87,88,90,93],wed_jul_22_19:2,wed_jun__8_16:2,wed_oct_23_19:2,wed_sep_21_10:2,weight:[0,83],weight_pushing_typ:83,weights_a:83,weights_b:83,welch:90,well:[0,1,83,88,90],were:[0,83,93],wfsa:0,wfst:0,wget:[2,3,6],what:[0,3,83,93],wheel:[1,7],when:[0,4,5,83,90],where:[0,4,83,90],wherea:[0,88],whether:[4,83,88,90],which:[0,2,83,85,88,90,93],whichev:83,whl:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],who:5,whole:83,whole_lattice_rescor:83,whose:83,why:[0,83],wiki:[0,83],wikipedia:83,win_amd64:[6,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],window:[4,5],witch:0,within:83,without:[83,93],won:[0,83],word:[83,86],work:[4,5,83,90],would:[0,4,83,86],wrap:87,write:83,www:86,x64:2,x86_64:[2,4,86,87],x:[2,3,4,5,83],x_:83,xvf:2,xxx:[3,5,83],xxx_filler:83,xz:2,y:[5,83],y_:83,y_t:83,yet:[0,83],yorku:0,you:[0,1,2,3,4,5,6,7,83,85,86,87,88,90],your:[2,3,4,7,83,86],your_github_usernam:4,yourself:83,yyi:83,zero:[0,83]},titles:["Core concepts in k2","k2","CUDA and cuDNN","FAQs","For developers","Install from source","From pre-compiled wheels (recommended)","Installation","torch 1.10.0","torch 1.10.1","torch 1.10.2","torch 1.11.0","torch 1.12.0","torch 1.12.1","torch 1.13.0","torch 1.13.1","torch 1.6.0","torch 1.7.0","torch 1.7.1","torch 1.8.0","torch 1.8.1","torch 1.9.0","torch 1.9.1","torch 2.0.0","torch 2.0.1","torch 2.1.0","Pre-compiled CPU wheels (Linux)","torch 1.10.0","torch 1.10.1","torch 1.10.2","torch 1.11.0","torch 1.12.0","torch 1.12.1","torch 1.13.0","torch 1.13.1","torch 1.6.0","torch 1.7.0","torch 1.7.1","torch 1.8.0","torch 1.8.1","torch 1.9.0","torch 1.9.1","torch 2.0.0","torch 2.0.1","torch 2.1.0","Pre-compiled CPU wheels (macOS)","torch 1.10.0","torch 1.10.1","torch 1.10.2","torch 1.11.0","torch 1.12.0","torch 1.12.1","torch 1.13.0","torch 1.13.1","torch 1.6.0","torch 1.7.0","torch 1.7.1","torch 1.8.0","torch 1.8.1","torch 1.9.0","torch 1.9.1","torch 2.0.0","torch 2.0.1","torch 2.1.0","Pre-compiled CPU wheels (Windows)","torch 1.10.0","torch 1.10.1","torch 1.10.2","torch 1.11.0","torch 1.12.0","torch 1.12.1","torch 1.13.0","torch 1.13.1","torch 1.6.0","torch 1.7.0","torch 1.7.1","torch 1.8.0","torch 1.8.1","torch 1.9.0","torch 1.9.1","torch 2.0.0","torch 2.0.1","Pre-compiled CUDA wheels (Linux)","k2","Python API reference","version","How to debug _k2","_k2","Fsa","Fsa tutorials","Fsa algorithms","Fsa algorithms tutorials","Python tutorials","Basics","Ragged tensor tutorials","Operations"],titleterms:{"0":[2,3,8,11,12,14,16,17,19,21,23,24,25,27,30,31,33,35,36,38,40,42,43,44,46,49,50,52,54,55,57,59,61,62,63,65,68,69,71,73,74,76,78,80,81],"1":[0,2,3,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81],"10":[2,8,9,10,27,28,29,46,47,48,65,66,67],"11":[2,11,30,49,68],"12":[12,13,31,32,50,51,69,70],"13":[14,15,33,34,52,53,71,72],"14":3,"2":[0,2,10,23,24,25,29,42,43,44,48,61,62,63,67,80,81],"27":3,"3":2,"5":2,"6":[2,3,16,35,54,73],"7":[2,17,18,36,37,55,56,74,75],"8":[2,3,19,20,38,39,57,58,76,77],"9":[21,22,40,41,59,60,78,79],"function":3,"true":90,A:[0,88],For:4,No:3,__eq__:83,__getattr__:83,__getitem__:83,__getstate__:83,__init__:83,__ne__:83,__repr__:83,__setattr__:83,__setstate__:83,__str__:83,_from_dense_fsa_vec:83,_get_arc_post:83,_get_backward_scor:83,_get_entering_arc:83,_get_forward_scor:83,_get_tot_scor:83,_invalidate_cache_:83,_k2:[86,87],_pyruntim:3,add:83,add_epsilon_self_loop:83,advanc:83,against:3,algorithm:[90,91],api:84,arang:83,arc_sort:[83,90],archiv:3,argmax:83,arrai:0,as_dict:83,aten:3,attribut:0,autograd:0,auxiliari:88,basic:93,beam:83,bin:3,bug:86,buggi:86,build:4,c:3,can:3,cannot:3,cat:83,clone:83,closur:83,code:86,com:3,compat:3,compil:[3,6,26,45,64,82],compos:[83,90],compose_arc_map:83,concept:0,connect:[83,90],content:1,convert_attr_to_rag:83,convert_dense_to_fsa_vec:83,core:0,cpu:[6,26,45,64],create_fsa_vec:83,create_ragged_shape2:83,create_ragged_tensor:83,create_spars:83,ctc_graph:83,ctc_loss:83,ctc_topo:83,ctcloss:83,cuda:[2,6,82],cudnn:2,debug:[4,86],decod:83,decoder_history_len:83,decodestateinfo:83,dens:0,densefsavec:83,determin:83,determinizeweightpushingtyp:83,develop:4,devic:[3,83],dim0:83,directori:3,do_rnnt_prun:83,download:3,draw:83,dtype:83,durat:83,environ:2,error:[3,86],exampl:[0,6],expand_ragged_attribut:83,fail:3,fals:90,faq:3,file:3,find:3,format_output:83,forward:83,found:3,fpic:3,from:[5,6],from_fil:83,from_lattic:83,from_openfst:83,from_str:83,fsa:[0,83,88,89,90,91],fsavec:88,get:83,get_arc_post:83,get_aux_label:83,get_backward_scor:83,get_best_matching_stat:83,get_context:83,get_fil:83,get_forward_scor:[83,90],get_lattic:83,get_lay:83,get_rnnt_logprob:83,get_rnnt_logprobs_joint:83,get_rnnt_logprobs_prun:83,get_rnnt_logprobs_smooth:83,get_rnnt_prune_rang:83,get_rnnt_prune_ranges_deprec:83,get_tot_scor:[83,90],github:3,glibc_2:3,grad:83,gz:3,how:86,http:3,id:83,importerror:3,index:83,index_add:83,index_and_sum:83,index_fsa:83,index_select:83,instal:[2,5,6,7],intersect:[83,90],intersect_dens:83,intersect_dense_prun:83,intersect_devic:83,invalid:3,invert:[83,88,90],invert_:83,is_cpu:88,is_cuda:[83,88],is_rand_equival:83,issu:[3,7],joint_mutual_information_recurs:83,k2:[0,1,83],label:88,later:3,ld:3,levenshtein_align:83,levenshtein_graph:83,lib64:3,libm:3,libpython3:3,linear_fsa:83,linear_fsa_with_self_loop:83,linear_fst:83,linear_fst_with_self_loop:83,linux:[6,26,82],list:88,log:[0,86],log_semir:90,logsumexp:83,lpython_librari:3,maco:[3,6,45],make:3,max:83,max_context:83,max_siz:83,max_stat:83,merg:83,min:83,mkl:3,mutual_information_recurs:83,mwer_loss:83,mwerloss:83,name:83,nbest:83,normal:83,notfound:3,num_arc:83,num_ax:83,num_stream:83,numel:83,object:3,one_best_decod:83,onlinedenseintersect:83,open:3,oper:95,pad:83,pre:[6,26,45,64,82],properti:83,properties_str:83,properties_to_str:83,prune_on_arc_post:83,pruned_ranges_to_lattic:83,pybind11:3,pybind:3,python:[84,92],r_x86_64_pc32:3,rag:[0,83,94],raggedshap:83,raggedtensor:83,random_fsa:83,random_fsa_vec:83,random_path:83,random_ragged_shap:83,recommend:6,recompil:3,refer:[0,84],regular_ragged_shap:83,relat:3,releas:4,reloc:3,remove_axi:83,remove_epsilon:83,remove_epsilon_and_add_self_loop:83,remove_epsilon_self_loop:83,remove_values_eq:83,remove_values_leq:83,rename_tensor_attribut:83,replace_fsa:83,report:7,requir:3,requires_grad:83,requires_grad_:83,revers:83,rnnt_loss:83,rnnt_loss_prun:83,rnnt_loss_simpl:83,rnnt_loss_smooth:83,rnntdecodingconfig:83,rnntdecodingstream:83,row_id:83,row_split:83,score:88,semir:0,set:2,set_scores_stochast:83,shape:83,share:3,shortest_path:83,simpl:0,simple_ragged_index_select:83,singl:88,so:3,sort_:83,sourc:5,sum:83,summari:86,swoosh_l:83,swoosh_l_forward:83,swoosh_l_forward_and_deriv:83,swoosh_r:83,swoosh_r_forward:83,swoosh_r_forward_and_deriv:83,symbol:[3,83,88],symbolt:83,tabl:88,tar:3,tensor:94,terminate_and_flush_to_stream:83,to_dot:83,to_fil:83,to_str:83,to_str_simpl:83,to_tensor:83,tolist:83,top_k:83,top_sort:83,torch:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],tot_siz:83,total_scor:83,trivial_graph:83,tropic:0,tutori:[89,91,92,94],union:83,uniqu:83,us:3,usr:3,v2:3,valu:83,variabl:2,vector:0,version:[3,4,85],visual:88,vocab_s:83,wai:86,wheel:[6,26,45,64,82],when:3,window:[6,64]}}) \ No newline at end of file +Search.setIndex({docnames:["core_concepts/index","index","installation/cuda-cudnn","installation/faqs","installation/for_developers","installation/from_source","installation/from_wheels","installation/index","installation/pre-compiled-cpu-wheels-linux/1.10.0","installation/pre-compiled-cpu-wheels-linux/1.10.1","installation/pre-compiled-cpu-wheels-linux/1.10.2","installation/pre-compiled-cpu-wheels-linux/1.11.0","installation/pre-compiled-cpu-wheels-linux/1.12.0","installation/pre-compiled-cpu-wheels-linux/1.12.1","installation/pre-compiled-cpu-wheels-linux/1.13.0","installation/pre-compiled-cpu-wheels-linux/1.13.1","installation/pre-compiled-cpu-wheels-linux/1.6.0","installation/pre-compiled-cpu-wheels-linux/1.7.0","installation/pre-compiled-cpu-wheels-linux/1.7.1","installation/pre-compiled-cpu-wheels-linux/1.8.0","installation/pre-compiled-cpu-wheels-linux/1.8.1","installation/pre-compiled-cpu-wheels-linux/1.9.0","installation/pre-compiled-cpu-wheels-linux/1.9.1","installation/pre-compiled-cpu-wheels-linux/2.0.0","installation/pre-compiled-cpu-wheels-linux/2.0.1","installation/pre-compiled-cpu-wheels-linux/2.1.0","installation/pre-compiled-cpu-wheels-linux/index","installation/pre-compiled-cpu-wheels-macos/1.10.0","installation/pre-compiled-cpu-wheels-macos/1.10.1","installation/pre-compiled-cpu-wheels-macos/1.10.2","installation/pre-compiled-cpu-wheels-macos/1.11.0","installation/pre-compiled-cpu-wheels-macos/1.12.0","installation/pre-compiled-cpu-wheels-macos/1.12.1","installation/pre-compiled-cpu-wheels-macos/1.13.0","installation/pre-compiled-cpu-wheels-macos/1.13.1","installation/pre-compiled-cpu-wheels-macos/1.6.0","installation/pre-compiled-cpu-wheels-macos/1.7.0","installation/pre-compiled-cpu-wheels-macos/1.7.1","installation/pre-compiled-cpu-wheels-macos/1.8.0","installation/pre-compiled-cpu-wheels-macos/1.8.1","installation/pre-compiled-cpu-wheels-macos/1.9.0","installation/pre-compiled-cpu-wheels-macos/1.9.1","installation/pre-compiled-cpu-wheels-macos/2.0.0","installation/pre-compiled-cpu-wheels-macos/2.0.1","installation/pre-compiled-cpu-wheels-macos/2.1.0","installation/pre-compiled-cpu-wheels-macos/index","installation/pre-compiled-cpu-wheels-windows/1.10.0","installation/pre-compiled-cpu-wheels-windows/1.10.1","installation/pre-compiled-cpu-wheels-windows/1.10.2","installation/pre-compiled-cpu-wheels-windows/1.11.0","installation/pre-compiled-cpu-wheels-windows/1.12.0","installation/pre-compiled-cpu-wheels-windows/1.12.1","installation/pre-compiled-cpu-wheels-windows/1.13.0","installation/pre-compiled-cpu-wheels-windows/1.13.1","installation/pre-compiled-cpu-wheels-windows/1.6.0","installation/pre-compiled-cpu-wheels-windows/1.7.0","installation/pre-compiled-cpu-wheels-windows/1.7.1","installation/pre-compiled-cpu-wheels-windows/1.8.0","installation/pre-compiled-cpu-wheels-windows/1.8.1","installation/pre-compiled-cpu-wheels-windows/1.9.0","installation/pre-compiled-cpu-wheels-windows/1.9.1","installation/pre-compiled-cpu-wheels-windows/2.0.0","installation/pre-compiled-cpu-wheels-windows/2.0.1","installation/pre-compiled-cpu-wheels-windows/2.1.0","installation/pre-compiled-cpu-wheels-windows/index","installation/pre-compiled-cuda-wheels-linux/1.10.0","installation/pre-compiled-cuda-wheels-linux/1.10.1","installation/pre-compiled-cuda-wheels-linux/1.10.2","installation/pre-compiled-cuda-wheels-linux/1.11.0","installation/pre-compiled-cuda-wheels-linux/1.12.0","installation/pre-compiled-cuda-wheels-linux/1.12.1","installation/pre-compiled-cuda-wheels-linux/1.13.0","installation/pre-compiled-cuda-wheels-linux/1.13.1","installation/pre-compiled-cuda-wheels-linux/1.6.0","installation/pre-compiled-cuda-wheels-linux/1.7.0","installation/pre-compiled-cuda-wheels-linux/1.7.1","installation/pre-compiled-cuda-wheels-linux/1.8.0","installation/pre-compiled-cuda-wheels-linux/1.8.1","installation/pre-compiled-cuda-wheels-linux/1.9.0","installation/pre-compiled-cuda-wheels-linux/1.9.1","installation/pre-compiled-cuda-wheels-linux/2.0.0","installation/pre-compiled-cuda-wheels-linux/2.0.1","installation/pre-compiled-cuda-wheels-linux/index","python_api/api","python_api/index","python_api/version","python_tutorials/_k2/how-to-debug","python_tutorials/_k2/index","python_tutorials/fsa/fsa","python_tutorials/fsa/index","python_tutorials/fsa_algo/fsa_algo","python_tutorials/fsa_algo/index","python_tutorials/index","python_tutorials/ragged/basics","python_tutorials/ragged/index","python_tutorials/ragged/operations"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":4,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinxcontrib.bibtex":9,sphinx:56},filenames:["core_concepts/index.rst","index.rst","installation/cuda-cudnn.rst","installation/faqs.rst","installation/for_developers.rst","installation/from_source.rst","installation/from_wheels.rst","installation/index.rst","installation/pre-compiled-cpu-wheels-linux/1.10.0.rst","installation/pre-compiled-cpu-wheels-linux/1.10.1.rst","installation/pre-compiled-cpu-wheels-linux/1.10.2.rst","installation/pre-compiled-cpu-wheels-linux/1.11.0.rst","installation/pre-compiled-cpu-wheels-linux/1.12.0.rst","installation/pre-compiled-cpu-wheels-linux/1.12.1.rst","installation/pre-compiled-cpu-wheels-linux/1.13.0.rst","installation/pre-compiled-cpu-wheels-linux/1.13.1.rst","installation/pre-compiled-cpu-wheels-linux/1.6.0.rst","installation/pre-compiled-cpu-wheels-linux/1.7.0.rst","installation/pre-compiled-cpu-wheels-linux/1.7.1.rst","installation/pre-compiled-cpu-wheels-linux/1.8.0.rst","installation/pre-compiled-cpu-wheels-linux/1.8.1.rst","installation/pre-compiled-cpu-wheels-linux/1.9.0.rst","installation/pre-compiled-cpu-wheels-linux/1.9.1.rst","installation/pre-compiled-cpu-wheels-linux/2.0.0.rst","installation/pre-compiled-cpu-wheels-linux/2.0.1.rst","installation/pre-compiled-cpu-wheels-linux/2.1.0.rst","installation/pre-compiled-cpu-wheels-linux/index.rst","installation/pre-compiled-cpu-wheels-macos/1.10.0.rst","installation/pre-compiled-cpu-wheels-macos/1.10.1.rst","installation/pre-compiled-cpu-wheels-macos/1.10.2.rst","installation/pre-compiled-cpu-wheels-macos/1.11.0.rst","installation/pre-compiled-cpu-wheels-macos/1.12.0.rst","installation/pre-compiled-cpu-wheels-macos/1.12.1.rst","installation/pre-compiled-cpu-wheels-macos/1.13.0.rst","installation/pre-compiled-cpu-wheels-macos/1.13.1.rst","installation/pre-compiled-cpu-wheels-macos/1.6.0.rst","installation/pre-compiled-cpu-wheels-macos/1.7.0.rst","installation/pre-compiled-cpu-wheels-macos/1.7.1.rst","installation/pre-compiled-cpu-wheels-macos/1.8.0.rst","installation/pre-compiled-cpu-wheels-macos/1.8.1.rst","installation/pre-compiled-cpu-wheels-macos/1.9.0.rst","installation/pre-compiled-cpu-wheels-macos/1.9.1.rst","installation/pre-compiled-cpu-wheels-macos/2.0.0.rst","installation/pre-compiled-cpu-wheels-macos/2.0.1.rst","installation/pre-compiled-cpu-wheels-macos/2.1.0.rst","installation/pre-compiled-cpu-wheels-macos/index.rst","installation/pre-compiled-cpu-wheels-windows/1.10.0.rst","installation/pre-compiled-cpu-wheels-windows/1.10.1.rst","installation/pre-compiled-cpu-wheels-windows/1.10.2.rst","installation/pre-compiled-cpu-wheels-windows/1.11.0.rst","installation/pre-compiled-cpu-wheels-windows/1.12.0.rst","installation/pre-compiled-cpu-wheels-windows/1.12.1.rst","installation/pre-compiled-cpu-wheels-windows/1.13.0.rst","installation/pre-compiled-cpu-wheels-windows/1.13.1.rst","installation/pre-compiled-cpu-wheels-windows/1.6.0.rst","installation/pre-compiled-cpu-wheels-windows/1.7.0.rst","installation/pre-compiled-cpu-wheels-windows/1.7.1.rst","installation/pre-compiled-cpu-wheels-windows/1.8.0.rst","installation/pre-compiled-cpu-wheels-windows/1.8.1.rst","installation/pre-compiled-cpu-wheels-windows/1.9.0.rst","installation/pre-compiled-cpu-wheels-windows/1.9.1.rst","installation/pre-compiled-cpu-wheels-windows/2.0.0.rst","installation/pre-compiled-cpu-wheels-windows/2.0.1.rst","installation/pre-compiled-cpu-wheels-windows/2.1.0.rst","installation/pre-compiled-cpu-wheels-windows/index.rst","installation/pre-compiled-cuda-wheels-linux/1.10.0.rst","installation/pre-compiled-cuda-wheels-linux/1.10.1.rst","installation/pre-compiled-cuda-wheels-linux/1.10.2.rst","installation/pre-compiled-cuda-wheels-linux/1.11.0.rst","installation/pre-compiled-cuda-wheels-linux/1.12.0.rst","installation/pre-compiled-cuda-wheels-linux/1.12.1.rst","installation/pre-compiled-cuda-wheels-linux/1.13.0.rst","installation/pre-compiled-cuda-wheels-linux/1.13.1.rst","installation/pre-compiled-cuda-wheels-linux/1.6.0.rst","installation/pre-compiled-cuda-wheels-linux/1.7.0.rst","installation/pre-compiled-cuda-wheels-linux/1.7.1.rst","installation/pre-compiled-cuda-wheels-linux/1.8.0.rst","installation/pre-compiled-cuda-wheels-linux/1.8.1.rst","installation/pre-compiled-cuda-wheels-linux/1.9.0.rst","installation/pre-compiled-cuda-wheels-linux/1.9.1.rst","installation/pre-compiled-cuda-wheels-linux/2.0.0.rst","installation/pre-compiled-cuda-wheels-linux/2.0.1.rst","installation/pre-compiled-cuda-wheels-linux/index.rst","python_api/api.rst","python_api/index.rst","python_api/version.rst","python_tutorials/_k2/how-to-debug.rst","python_tutorials/_k2/index.rst","python_tutorials/fsa/fsa.rst","python_tutorials/fsa/index.rst","python_tutorials/fsa_algo/fsa_algo.rst","python_tutorials/fsa_algo/index.rst","python_tutorials/index.rst","python_tutorials/ragged/basics.rst","python_tutorials/ragged/index.rst","python_tutorials/ragged/operations.rst"],objects:{"k2.CtcLoss":[[83,0,1,"","forward"]],"k2.DenseFsaVec":[[83,0,1,"","__init__"],[83,0,1,"","_from_dense_fsa_vec"],[83,1,1,"","device"],[83,1,1,"","duration"],[83,0,1,"","to"]],"k2.DeterminizeWeightPushingType":[[83,1,1,"","name"],[83,1,1,"","value"]],"k2.Fsa":[[83,0,1,"","__getattr__"],[83,0,1,"","__getitem__"],[83,0,1,"","__init__"],[83,0,1,"","__setattr__"],[83,0,1,"","__str__"],[83,0,1,"","_get_arc_post"],[83,0,1,"","_get_backward_scores"],[83,0,1,"","_get_entering_arcs"],[83,0,1,"","_get_forward_scores"],[83,0,1,"","_get_tot_scores"],[83,0,1,"","_invalidate_cache_"],[83,0,1,"","as_dict"],[83,0,1,"","convert_attr_to_ragged_"],[83,1,1,"","device"],[83,0,1,"","draw"],[83,0,1,"","from_openfst"],[83,0,1,"","from_str"],[83,0,1,"","get_arc_post"],[83,0,1,"","get_backward_scores"],[83,0,1,"","get_filler"],[83,0,1,"","get_forward_scores"],[83,0,1,"","get_tot_scores"],[83,1,1,"","grad"],[83,0,1,"","invert"],[83,0,1,"","invert_"],[83,1,1,"","num_arcs"],[83,1,1,"","properties"],[83,1,1,"","properties_str"],[83,0,1,"","rename_tensor_attribute_"],[83,1,1,"","requires_grad"],[83,0,1,"","requires_grad_"],[83,0,1,"","set_scores_stochastic_"],[83,1,1,"","shape"],[83,0,1,"","to"]],"k2.MWERLoss":[[83,0,1,"","forward"]],"k2.Nbest":[[83,0,1,"","from_lattice"],[83,0,1,"","intersect"],[83,0,1,"","top_k"],[83,0,1,"","total_scores"]],"k2.OnlineDenseIntersecter":[[83,0,1,"","__init__"],[83,0,1,"","decode"],[83,1,1,"","num_streams"]],"k2.RaggedShape":[[83,0,1,"","__eq__"],[83,0,1,"","__getitem__"],[83,0,1,"","__init__"],[83,0,1,"","__ne__"],[83,0,1,"","__repr__"],[83,0,1,"","__str__"],[83,0,1,"","compose"],[83,1,1,"","device"],[83,1,1,"","dim0"],[83,0,1,"","get_layer"],[83,0,1,"","index"],[83,0,1,"","max_size"],[83,1,1,"","num_axes"],[83,0,1,"","numel"],[83,0,1,"","regular_ragged_shape"],[83,0,1,"","remove_axis"],[83,0,1,"","row_ids"],[83,0,1,"","row_splits"],[83,0,1,"","to"],[83,0,1,"","tot_size"],[83,0,1,"","tot_sizes"]],"k2.RaggedTensor":[[83,0,1,"","__eq__"],[83,0,1,"","__getitem__"],[83,0,1,"","__getstate__"],[83,0,1,"","__init__"],[83,0,1,"","__ne__"],[83,0,1,"","__repr__"],[83,0,1,"","__setstate__"],[83,0,1,"","__str__"],[83,0,1,"","add"],[83,0,1,"","arange"],[83,0,1,"","argmax"],[83,0,1,"","cat"],[83,0,1,"","clone"],[83,1,1,"","device"],[83,1,1,"","dim0"],[83,1,1,"","dtype"],[83,1,1,"","grad"],[83,0,1,"","index"],[83,1,1,"","is_cuda"],[83,0,1,"","logsumexp"],[83,0,1,"","max"],[83,0,1,"","min"],[83,0,1,"","normalize"],[83,1,1,"","num_axes"],[83,0,1,"","numel"],[83,0,1,"","pad"],[83,0,1,"","remove_axis"],[83,0,1,"","remove_values_eq"],[83,0,1,"","remove_values_leq"],[83,1,1,"","requires_grad"],[83,0,1,"","requires_grad_"],[83,1,1,"","shape"],[83,0,1,"","sort_"],[83,0,1,"","sum"],[83,0,1,"","to"],[83,0,1,"","to_str_simple"],[83,0,1,"","tolist"],[83,0,1,"","tot_size"],[83,0,1,"","unique"],[83,1,1,"","values"]],"k2.RnntDecodingConfig":[[83,0,1,"","__init__"],[83,1,1,"","beam"],[83,1,1,"","decoder_history_len"],[83,1,1,"","max_contexts"],[83,1,1,"","max_states"],[83,1,1,"","vocab_size"]],"k2.RnntDecodingStream":[[83,0,1,"","__init__"],[83,0,1,"","__str__"]],"k2.RnntDecodingStreams":[[83,0,1,"","__init__"],[83,0,1,"","__str__"],[83,0,1,"","advance"],[83,0,1,"","format_output"],[83,0,1,"","get_contexts"],[83,0,1,"","terminate_and_flush_to_streams"]],"k2.SymbolTable":[[83,0,1,"","add"],[83,0,1,"","from_file"],[83,0,1,"","from_str"],[83,0,1,"","get"],[83,1,1,"","ids"],[83,0,1,"","merge"],[83,1,1,"","symbols"],[83,0,1,"","to_file"]],"k2.ragged":[[83,2,1,"","cat"],[83,2,1,"","create_ragged_shape2"],[83,2,1,"","create_ragged_tensor"],[83,2,1,"","index"],[83,2,1,"","index_and_sum"],[83,2,1,"","random_ragged_shape"],[83,2,1,"","regular_ragged_shape"]],"k2.ragged.RaggedShape":[[83,0,1,"","__eq__"],[83,0,1,"","__getitem__"],[83,0,1,"","__init__"],[83,0,1,"","__ne__"],[83,0,1,"","__repr__"],[83,0,1,"","__str__"],[83,0,1,"","compose"],[83,1,1,"","device"],[83,1,1,"","dim0"],[83,0,1,"","get_layer"],[83,0,1,"","index"],[83,0,1,"","max_size"],[83,1,1,"","num_axes"],[83,0,1,"","numel"],[83,0,1,"","regular_ragged_shape"],[83,0,1,"","remove_axis"],[83,0,1,"","row_ids"],[83,0,1,"","row_splits"],[83,0,1,"","to"],[83,0,1,"","tot_size"],[83,0,1,"","tot_sizes"]],"k2.ragged.RaggedTensor":[[83,0,1,"","__eq__"],[83,0,1,"","__getitem__"],[83,0,1,"","__getstate__"],[83,0,1,"","__init__"],[83,0,1,"","__ne__"],[83,0,1,"","__repr__"],[83,0,1,"","__setstate__"],[83,0,1,"","__str__"],[83,0,1,"","add"],[83,0,1,"","arange"],[83,0,1,"","argmax"],[83,0,1,"","cat"],[83,0,1,"","clone"],[83,1,1,"","device"],[83,1,1,"","dim0"],[83,1,1,"","dtype"],[83,1,1,"","grad"],[83,0,1,"","index"],[83,1,1,"","is_cuda"],[83,0,1,"","logsumexp"],[83,0,1,"","max"],[83,0,1,"","min"],[83,0,1,"","normalize"],[83,1,1,"","num_axes"],[83,0,1,"","numel"],[83,0,1,"","pad"],[83,0,1,"","remove_axis"],[83,0,1,"","remove_values_eq"],[83,0,1,"","remove_values_leq"],[83,1,1,"","requires_grad"],[83,0,1,"","requires_grad_"],[83,1,1,"","shape"],[83,0,1,"","sort_"],[83,0,1,"","sum"],[83,0,1,"","to"],[83,0,1,"","to_str_simple"],[83,0,1,"","tolist"],[83,0,1,"","tot_size"],[83,0,1,"","unique"],[83,1,1,"","values"]],k2:[[83,2,1,"","add_epsilon_self_loops"],[83,2,1,"","arc_sort"],[83,2,1,"","cat"],[83,2,1,"","closure"],[83,2,1,"","compose"],[83,2,1,"","compose_arc_maps"],[83,2,1,"","connect"],[83,2,1,"","convert_dense_to_fsa_vec"],[83,2,1,"","create_fsa_vec"],[83,2,1,"","create_sparse"],[83,2,1,"","ctc_graph"],[83,2,1,"","ctc_loss"],[83,2,1,"","ctc_topo"],[83,2,1,"","determinize"],[83,2,1,"","do_rnnt_pruning"],[83,2,1,"","expand_ragged_attributes"],[83,2,1,"","get_aux_labels"],[83,2,1,"","get_best_matching_stats"],[83,2,1,"","get_lattice"],[83,2,1,"","get_rnnt_logprobs"],[83,2,1,"","get_rnnt_logprobs_joint"],[83,2,1,"","get_rnnt_logprobs_pruned"],[83,2,1,"","get_rnnt_logprobs_smoothed"],[83,2,1,"","get_rnnt_prune_ranges"],[83,2,1,"","get_rnnt_prune_ranges_deprecated"],[83,2,1,"","index_add"],[83,2,1,"","index_fsa"],[83,2,1,"","index_select"],[83,2,1,"","intersect"],[83,2,1,"","intersect_dense"],[83,2,1,"","intersect_dense_pruned"],[83,2,1,"","intersect_device"],[83,2,1,"","invert"],[83,2,1,"","is_rand_equivalent"],[83,2,1,"","joint_mutual_information_recursion"],[83,2,1,"","levenshtein_alignment"],[83,2,1,"","levenshtein_graph"],[83,2,1,"","linear_fsa"],[83,2,1,"","linear_fsa_with_self_loops"],[83,2,1,"","linear_fst"],[83,2,1,"","linear_fst_with_self_loops"],[83,2,1,"","mutual_information_recursion"],[83,2,1,"","mwer_loss"],[83,2,1,"","one_best_decoding"],[83,2,1,"","properties_to_str"],[83,2,1,"","prune_on_arc_post"],[83,2,1,"","pruned_ranges_to_lattice"],[83,2,1,"","random_fsa"],[83,2,1,"","random_fsa_vec"],[83,2,1,"","random_paths"],[83,2,1,"","remove_epsilon"],[83,2,1,"","remove_epsilon_and_add_self_loops"],[83,2,1,"","remove_epsilon_self_loops"],[83,2,1,"","replace_fsa"],[83,2,1,"","reverse"],[83,2,1,"","rnnt_loss"],[83,2,1,"","rnnt_loss_pruned"],[83,2,1,"","rnnt_loss_simple"],[83,2,1,"","rnnt_loss_smoothed"],[83,2,1,"","shortest_path"],[83,2,1,"","simple_ragged_index_select"],[83,2,1,"","swoosh_l"],[83,2,1,"","swoosh_l_forward"],[83,2,1,"","swoosh_l_forward_and_deriv"],[83,2,1,"","swoosh_r"],[83,2,1,"","swoosh_r_forward"],[83,2,1,"","swoosh_r_forward_and_deriv"],[83,2,1,"","to_dot"],[83,2,1,"","to_str"],[83,2,1,"","to_str_simple"],[83,2,1,"","to_tensor"],[83,2,1,"","top_sort"],[83,2,1,"","trivial_graph"],[83,2,1,"","union"]]},objnames:{"0":["py","method","Python method"],"1":["py","attribute","Python attribute"],"2":["py","function","Python function"]},objtypes:{"0":"py:method","1":"py:attribute","2":"py:function"},terms:{"0":[0,4,5,6,9,10,13,15,18,20,22,26,45,64,70,72,82,83,86,88,90],"00":83,"000":83,"0000":[83,90],"0000e":83,"00490":83,"00_linux":2,"01_linux":2,"02_linux":2,"035":83,"03749":83,"03_linux":2,"04":3,"0513":90,"05_linux":2,"06":83,"06_linux":2,"07":2,"0777":90,"08":83,"08x":83,"09":2,"09_pdt_2020":2,"0_520":2,"0_530":2,"0_bu":2,"0s":83,"0ubuntu3":86,"0x0":86,"0x00007fff29a2d6e0":86,"0x00007fff29a51365":86,"0x00007fff29b54786":86,"0x00007fff29b86b1d":86,"0x00007fff29b90b2f":86,"0x00007fff29b90ba3":86,"0x00007fff29b96291":86,"0x00007fff29b97f7f":86,"0x00007ffff2553d1d":86,"0x00007ffff78ca535":86,"0x11b93e":86,"0x11baa7":86,"0x122":86,"0x1b":86,"0x1b8676":86,"0x1eab1d":86,"0x1f4b2f":86,"0x1f4ba3":86,"0x1fa291":86,"0x1fbf7f":86,"0x2a":86,"0x3e":86,"0x49":86,"0x5025":86,"0x55555555478a":86,"0x555558d973e8":86,"0x555558db63f8":86,"0x55f05c1e378a":86,"0x56":86,"0x5b":86,"0x7a0":86,"0x7f716d321105":86,"0x7f716dc126e0":86,"0x7f716dc362e2":86,"0x7f716dd39676":86,"0x7f716dd6bb1d":86,"0x7f716dd75b2f":86,"0x7f716dd75ba3":86,"0x7f716dd7b291":86,"0x7f716dd7cf7f":86,"0x7f723b630bf7":86,"0x7f723ba72355":86,"0x7f723ba85de9":86,"0x7f723ba9f80":86,"0x7f723baa2535":86,"0x7f723baa3c8b":86,"0x7f723bb1b93e":86,"0x7f723bb1baa7":86,"0x7f723bba0f47":86,"0x7f723bba0ff":86,"0x7f723bba102b":86,"0x7f723bbe6902":86,"0x7f723bbe6add":86,"0x7f723bc0a750":86,"0x7f723bc0ac26":86,"0x7fff2913c105":86,"0x7fff29a512e2":86,"0x7fff29fd4a50":86,"0x7fff29fd6310":86,"0x7fff90765700":86,"0x7fff90f66700":86,"0x7ffff64adb40":86,"0x7ffff7458bf7":86,"0x7fffffffd5e0":86,"0x7fffffffd820":86,"0x916e0":86,"0x9e":86,"0xa3c8b":86,"0xb52e2":86,"0xb67":86,"0xe7":86,"0xf5":86,"0xfd":86,"1":[1,4,5,6,23,26,42,45,61,64,80,82,83,86,88,90,93],"10":[0,4,26,45,64,82,83,88,90,93],"100":[0,83],"1000":[83,88],"10000":83,"1011":3,"1038":3,"107":86,"1073741824":83,"109":2,"11":[0,4,5,26,45,64,82,83],"112":2,"1184088":86,"1184089":86,"119":2,"12":[0,3,4,26,45,64,82,83,88],"1225":3,"13":[26,45,64,82,83,88],"1363":83,"13_pdt_2021":2,"13_pst_2023":2,"14":[5,83,88],"1408":86,"1439":86,"147":[3,5],"14_pdt_2022":2,"15":[0,2,5,83],"15000000":83,"16":[0,83],"16_pdt_2019":2,"17":83,"178":86,"179":86,"18":[3,4,5,83],"19":[2,83],"1931":83,"195":86,"1997":0,"19m":3,"1_465":2,"1_510":2,"1_515":2,"1d":83,"1e":83,"1s":83,"2":[1,3,5,6,8,9,11,12,13,14,26,45,64,65,66,68,69,70,71,72,73,74,75,76,77,78,79,82,83,86,88,90,93],"20":[0,83,88,90,93],"200":83,"2000":[0,83,88,90],"2002":0,"2005":2,"2008":0,"2011":0,"2018":86,"20180409":86,"2019":2,"2020":[2,5],"2021":[2,3],"2022":2,"2023":2,"209":83,"21":83,"2147483648":83,"22":83,"221":2,"2211":83,"224":86,"23":[0,2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,83],"2315":0,"23_cuda11":2,"24":[2,3,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,83],"243":2,"243_418":2,"249":86,"25":[0,83],"2500":83,"269":0,"28845127_0":2,"29":2,"29920130_0":2,"29_cuda12":2,"2_495":2,"3":[0,4,5,6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,83,86,88,90,93],"30":[0,2,83,88],"300":83,"3000":[88,90],"30672275_0":2,"30978841_0":2,"30_pst_2021":2,"31":5,"311":0,"3130":90,"313261687":83,"31442593_0":2,"31833905_0":2,"32":2,"32415258_0":2,"32767":86,"33":2,"38":[3,4,83,86,87],"38_pdt_2019":2,"39":[0,2],"3_450":2,"4":[0,5,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,83,86,88,90,93],"40":[0,83],"4000":88,"4028e":83,"41_pst_2022":2,"437488":83,"44_cuda11":2,"45":2,"4513":90,"47":2,"49":2,"5":[0,5,68,83,86,88,90,93],"50":[0,83],"5000":[83,88],"501":83,"51":[0,2],"53":2,"559":0,"56":5,"584":0,"58_pdt_2022":2,"5981":83,"598139":83,"6":[0,4,5,26,45,64,69,70,71,72,82,83,86,90],"60":0,"61":2,"6328":0,"65":2,"66":2,"69":0,"7":[0,5,6,26,45,64,71,72,80,81,82,83,86,90],"70":[0,83],"7130":90,"742":86,"746":83,"75":83,"7685":0,"7981":83,"798139":83,"8":[0,4,5,26,45,64,80,81,82,83,86,87,90],"80":0,"8000":90,"8130":90,"828":83,"8444":0,"856421616":83,"87":2,"88":0,"88290":4,"89":2,"89_440":2,"9":[0,2,26,45,64,82,83,86],"90":[0,83],"92":83,"929":86,"955":83,"98":[3,5],"99":2,"case":[4,5,83,87,90],"catch":86,"class":[0,83,88],"const":86,"default":[5,83,90],"do":[0,1,2,83,90],"enum":83,"export":[2,3,4,5],"final":[0,83,88,90],"float":[83,90,93],"function":[5,83,90],"import":[0,3,4,5,83,86,87,88],"int":[3,5,83,86,93],"long":83,"new":[4,83,86,88,90],"return":[83,88,90],"short":[0,83],"static":[3,83],"super":0,"switch":4,"throw":[3,83,86],"true":[0,83,88],"try":[3,83],"var":83,"void":[3,5],"while":[0,3,4,7,83,85],A:[1,83,89,90,93],And:83,As:[4,83],At:[0,4,83],Be:83,But:83,By:83,For:[0,1,3,7,83,86,88,90,93],If:[0,2,3,4,5,6,7,83,85,86,87,88,90,93],In:[0,3,4,5,83,86,87,88,93],It:[0,1,3,4,5,83,88,90,93],Its:[0,83,88,90],NO:[0,86],NOT:[0,3,83],Not:83,ON:[3,4,5],ONE:83,Of:83,On:83,One:83,That:[1,4,5,83,93],The:[0,2,3,4,83,86,88,90,93],Then:[83,86],There:[0,83,86,88,93],These:83,To:[0,2,4,5,83,86,88],Will:83,With:0,_:83,__closur:86,__cxa_throw:86,__file__:[4,87],__getitem__:0,__in_chrg:86,__init:4,__init__:[0,3],__libc_start_main:86,__nv_dl_tag:[3,5],__nv_dl_wrapper_t:[3,5],_c:87,_cach:83,_dep:86,_devic:83,_fun:86,_k2:[1,3,4,83,92],_media:0,_non_tensor_attr:83,_properti:83,_pyeval_evalcodewithnam:86,_pyeval_evalframedefault:86,_pyobject_maketpcal:86,_start:86,_tensor_attr:83,a_arc_map:83,a_clon:83,a_fsa:[83,90],a_fsa_1:90,a_fsa_compos:90,a_fsa_compose2:90,a_fsa_compose3:90,a_fsa_intersect2:90,a_fsa_intersect3:90,a_fsa_intersect:90,a_fsa_inv:83,a_to_b_map:83,ab:83,abbc:83,abl:[1,83,88],about:[0,5,83,85,86],abov:[0,3,4,83,85,86,88,90],accept:83,acceptor:[0,83,90],access:[3,83,90,93],accomplish:0,accord:83,accordingli:3,accumul:83,accur:83,acess:93,achiev:[0,83],acoust:83,act:83,activ:[2,83],activate_k2_debug:4,activate_k2_releas:4,actual:[0,83],acycl:83,ad:[0,1,4,83,90],add:[0,86,90],add_epsilon_self_loop:[84,90],addit:83,addition:83,advanc:4,advis:83,advisori:83,affect:83,after:[2,3,4,5,7,83,86,90],after_connect:90,after_invert:90,after_invert_aux:90,after_sort:90,afterward:83,algorithm:[0,1,83,92],align:83,all:[0,4,5,83,90],allow:83,allow_parti:83,allow_trunc:83,almost:83,along:83,alpha:[83,90],alphabet:83,alreadi:[83,90],also:[3,4,83,85,88,90],altern:[0,4,83],although:83,alwai:[0,6,83],am:83,am_only_scal:83,am_prob:83,among:88,an:[0,3,4,7,83,85,86,88,90],ani:[0,2,7,83,86,93],anoth:[0,3,4],ans_arc_map:83,answer:0,anticip:83,anymor:83,anyth:83,api:[0,1,85,88],appear:83,append:83,appli:[83,90],applic:[1,83],approach:[3,6,7,83],appropri:7,approxim:83,apropo:86,apt:5,ar:[0,3,4,5,83,85,86,87,88,90,93],arang:86,arbitrari:[0,83],arc0:0,arc10:0,arc1:0,arc2:0,arc3:0,arc4:0,arc5:0,arc6:0,arc7:0,arc8:0,arc9:0,arc:[0,83,88,90,93],arc_deriv:83,arc_idx012:83,arc_map:83,arc_map_index:83,arc_map_src:83,arc_map_token:83,arc_po:83,arc_sort:[84,91],arc_sort_single_aft:83,arc_sort_single_after_aux_label:83,arc_sort_single_befor:83,archiv:2,arcsort:5,arcsortedanddeterminist:5,arg0:83,arg:[83,86],args_in:86,argument:[83,90],argument_load:86,arithmet:83,arithmetic_cod:83,arrai:[1,83,86,93],array1:[3,5,86],arxiv:83,ascend:[83,90],aspect:83,asr:1,assert:88,assertionerror:83,assign:[83,88],associ:83,assum:[0,3,4,83],attach:[0,83,85,88],attr1:83,attr2:83,attr3:83,attr4:83,attribut:[1,83,88],attribute_nam:83,auto:86,autograd:[1,83,90],autograd_log:0,autograd_trop:0,automag:[0,88],automat:[1,83],automaticali:0,automaton:1,aux_label1:83,aux_label2:83,aux_label:[0,83,88,90],aux_label_nam:83,aux_labels2:83,aux_labels3:83,aux_labels_sym:[83,88],aux_symbol:88,auxiliari:83,avaiabl:6,avail:[4,83],averag:83,avoid:83,ax:83,axi:83,b:[0,83,88,90,93],b_arc_map:83,b_fsa:[83,90],b_fsa_1:90,b_fsa_compos:90,b_fsa_compose2:90,b_fsa_compose3:90,b_fsa_intersect2:90,b_fsa_intersect3:90,b_fsa_intersect:90,b_to_a_map:83,back:[0,83],backtrac:86,backward:[0,83],bad:86,base:[0,1,83],bash:4,basic:[83,92,94],batch:[0,1,83],batch_siz:83,baum:90,becaus:[0,83,87],becom:83,been:[83,86],befor:[0,3,4,5,83,90],before_connect:90,before_invert:90,before_invert_aux:90,before_sort:90,begin:[0,83],begin_fram:83,begin_symbol:83,behavior:83,being:83,belong:[0,83],below:[0,3,4,5,6,83,88,90],best:[0,83,90],best_path:83,between:[0,83],bin:[2,4,83,86],binari:83,bit:83,blank:[0,83],blk:83,blob:3,bo:83,bool:83,both:[0,83,87,88,90],boundari:83,breakdown:83,bring:0,bug:87,buggi:87,build:[2,3,5,6,83,86,87],build_debug:4,build_releas:[4,5],built:[2,4,85],bye:83,c:[0,2,4,5,83,86,87,88,93],c_fsa:90,c_fsa_compos:90,c_fsa_compose2:90,c_fsa_compose3:90,c_fsa_intersect2:90,c_fsa_intersect3:90,c_fsa_intersect:90,c_include_path:3,ca:0,cach:83,cached_tot_s:83,call:[0,3,83,86],call_impl:86,can:[0,1,2,4,5,6,7,83,85,86,87,88,90,93],cannot:[0,4,5,83],care:83,cast:86,castabl:83,cat:84,catchpoint:86,catmoreax:4,caus:83,caution:83,cc:[3,86],cd:[3,4,5],center:83,ceph:[2,3],certain:[0,83],cflag:2,cfunction_call_vararg:86,chang:[0,3,5,83,86,88],characterist:0,check:[2,3,4,5,83,86,90],chmod:2,choic:83,choos:[2,5,7,83],chunk:83,circular:83,cl1:0,clang:5,classmethod:83,click:93,clone:[3,4,5],closur:84,cmake:[3,4,5],co:[2,6,83,90],code:[0,2,4,83,87,88,90],col:83,col_index:[0,83],collect:[83,85],collect_env:[7,85],collis:83,column:[0,83,93],com:[1,2,4,5,83,86],combin:[0,83,90],combined_prob:83,come:[0,83],comma:83,command:[2,3,4,5,7,86,88],comment:83,common:[0,83,88],compact:83,compar:83,compat:[0,83],compil:[1,2,4,5,7,86],complet:[0,83,86],complic:83,compon:2,compos:[84,91],compose_arc_map:84,composit:[0,83,90],compress:0,comput:[0,1,2,83,90],concaten:83,concept:[1,83],conceptu:83,conda:[2,3,4,5],conda_prefix:[3,5],config:83,configur:[3,4,5,83,86],confus:83,connect:[84,91],consid:[0,6,83,86],consider:83,consist:[0,83],constant:83,constrain:83,constraint:[0,83],construct:[0,83],constructor:[0,83],contain:[0,4,83,87,90,93],content:83,context:[0,3,5,83],contigu:[83,93],contribut:83,convent:[83,88],convers:[0,83,93],convert:[0,83,90],convert_attr_to_ragged_:83,convert_dense_to_fsa_vec:84,coo:83,coordin:83,copi:[3,83,86],copyright:[2,5,86],core:[1,93],corpor:2,correct:83,correspond:[0,83,90],cost:[0,83],could:83,count:83,counterpart:83,counts_out:83,cours:83,course_arch:0,cp310:[11,12,13,14,15,23,24,25,30,31,32,33,34,42,43,44,49,50,51,52,53,61,62,63,68,69,70,71,72,80,81],cp311:[14,15,23,24,25,42,43,44,61,62,63,71,72,80,81],cp36:[8,9,10,16,17,18,19,20,21,22,27,28,29,35,36,37,38,39,40,41,46,47,48,54,55,56,57,58,59,60,65,66,67,73,74,75,76,77,78],cp36m:[8,9,10,16,17,18,19,20,21,22,27,28,29,35,36,37,38,39,40,41,46,47,48,54,55,56,57,58,59,60,65,66,67,73,74,75,76,77,78],cp37:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77],cp37m:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77],cp38:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],cp39:[8,9,10,11,12,13,14,15,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,75,76,77,78,79,80,81],cplus_include_path:3,cpp_function:86,cpu:[1,4,5,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,83,86,87,88,90],cpython:[3,4,86,87],creat:[0,3,4,7,83,85,88],create_fsa_vec:[0,84,88,90],create_ragged_shape2:84,create_ragged_tensor:84,create_spars:84,creation:83,credit:5,cs:0,csl01:0,csr:0,csrc:[3,4,5,83,86],csukuangfj:[2,6],ctc:[1,83],ctc_graph:84,ctc_graph_modifi:83,ctc_loss:84,ctc_topo:[84,90],ctc_topo_compose_linear_fsa:83,ctc_topo_modifi:83,ctc_topo_modified_compose_linear_fsa:83,ctcloss:84,ctest:[4,5],cu117:6,cu:4,cu_ragged_test:4,cuda10:[65,66,67,68,69,70,73,74,75,76,77,78,79],cuda11:[6,68,69,70,71,72,74,80,81],cuda:[1,4,5,7,83,88,90],cuda_10:2,cuda_11:2,cuda_12:2,cuda_bin_path:2,cuda_hom:2,cuda_inc_path:2,cuda_path:2,cuda_toolkit_root:2,cuda_toolkit_root_dir:2,cudastream_t:[3,5],cudasuccess:[3,5],cudatoolkit:[2,4,5],cudatoolkit_root:2,cudatoolkit_root_dir:2,cudatoolkit_target_dir:2,cudnn:[1,4,5,7],cupti:2,current:[7,83,88],custream_st:[3,5],cutoff:83,cxx:3,d:[0,83,88,93],darwin:3,data:[0,83,93],datadir:86,dcmake_build_typ:[3,4,5],dcudnn_include_path:5,dcudnn_library_path:5,debug:[83,87,92],debugdir:86,dec:5,declin:86,decod:1,decode_st:83,decoder_dim:83,decodestateinfo:84,decoding_graph:83,decreas:[0,83],default_valu:83,defin:[83,90],definit:[83,93],delai:83,delay_penalti:83,delet:83,delta:83,demonstr:[0,90],demostr:0,denot:[0,83,90],dens:[1,83],dense_fsa:83,dense_fsa_vec:83,densefsavec:[0,84],depend:[0,83,93],deriv:83,descend:83,descent:0,describ:[0,2,4,26,45,64,82,83,90],design:[0,93],desir:83,dest:83,dest_nam:83,dest_stat:[83,93],destin:[0,83,90],detail:[0,83,86],determin:84,determinist:83,determinizeweightpushingtyp:[3,84],dev20230223:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22],dev20230224:[65,66,67,68,69,70,71,72,73,74,75,76,77,78],dev20230318:[23,80],dev20230427:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,69,70,71,72,80],dev20230430:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,69,70,71,72,80],dev20230508:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,69,70,71,72,80],dev20230524:[8,9,10,11,12,13,14,15,23,24,68,69,70,71,72,80,81],dev20230715:65,dev20230717:[65,66,67,68,69,70,73,74,75,76,77],dev20230718:[6,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],dev20230719:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24],dev20230720:[6,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],dev20230725:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],dev20230726:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],dev20230926:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62],dev20230927:[9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24],dev20231021:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,59,60,61,62,63],dev20231022:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],develop:[1,2,3,7],devic:[5,88],diagraph:83,dict:83,dictat:83,did:83,differ:[0,2,3,4,5,83,88,93],differenti:83,digraph:83,dim1:83,dim:83,dim_:86,dimens:[0,83,93],direct:83,directli:[0,83,90],directori:[2,4],diretori:4,disabl:86,discard:83,disk:83,dispatch:86,displai:[83,88],distanc:83,distinct:83,divid:83,dk2_build_for_all_arch:[3,4,5],dk2_with_cuda:[4,5],dlopen:3,do_rnnt_prun:84,doc:83,document:[0,83,86,90],doe:[0,83],don:[2,83],done:[0,5,83,86],doubl:[83,90,93],download:[2,6],draw:[0,88,90],driver:2,drm:2,dropout:83,dropout_prob:83,dtype:[0,88,90,93],due:83,durat:0,dure:[83,90],dylib:3,dynam:83,e:[0,3,4,5,83,86,90],each:[0,4,83,90,93],earlier:83,earliest:83,eas:[0,90],edg:83,edu:0,eec:0,effect:83,effici:83,either:[0,83,88,90],element:[0,83,88],els:83,emit:83,empti:83,en:83,enabl:[3,5,86],encod:[0,83],encoder_dim:83,encount:[3,7],encourag:83,end:[0,83,86,88],end_fram:83,end_symbol:83,enough:5,ensur:83,enter:[0,83,86,88,90],entir:83,entri:[0,83,93],env:[3,83,86],environ:[3,5,7,85],environemt:5,eo:83,ep:83,epsilon:[83,90],epsilonfre:5,equal:[0,83],equival:83,error:[4,5,7,83,87],estim:83,etc:83,eval:[3,5],evaldevic:[3,5],evalu:83,even:[83,86,90],ever:83,everi:[0,83,88],exact:83,exactli:83,exampl:[1,83,88,90],exce:83,except:[83,86],exclus:83,execut:[4,86],exist:[0,83],exot:0,exp:[0,83],expand:83,expand_ragged_attribut:84,expect:83,explain:0,explan:0,explicitli:90,exponenti:83,express:[4,83],extend:[0,83],extens:83,extent:86,extra:[0,2,83],extract:[0,83],f:[3,5,6,83,86],f_0:90,f_1:90,f_2:90,f_3:90,f_i:90,factor:83,fail:[5,86],failur:5,fairli:0,fake:83,fals:[0,83,88],fangjun:[2,3,86,87],faq:[1,7],fast:83,faster:[0,4,83],featur:[0,4],fed:83,fernando:0,few:90,fewer:83,field:[1,83],fig:[0,88],figur:0,file:[4,83,86,88],filenam:83,fill:83,filler:83,filter:83,final_st:83,find:[1,4,5,83,86],finit:[0,1,83],first:[0,2,4,83,86,93],fix:[3,4,86],fix_torch:4,fj:[2,3,86,87],flexibl:0,float32:[0,83,88,90,93],float64:[83,90,93],fly:0,follow:[0,2,3,4,5,6,7,83,86,88,90,93],foo:83,foo_fil:83,forc:83,fork:4,form:83,formal:0,format:[0,83,88],formula:[83,90],forward:90,forward_scores_xxx_yyi:83,found:[4,5,83],foundat:86,four:83,fourth:93,frac:0,frame:[0,83],frame_idx_nam:83,framework:0,free:[83,86],from:[0,1,2,3,7,83,86,88,90],from_dict:83,from_openfst:0,from_str:[0,5,88,90],fsa2:0,fsa:[1,3,4,5,6,84,86,92],fsa_aux:88,fsa_aux_symbol:88,fsa_from_binary_function_tensor:83,fsa_from_unary_function_rag:83,fsa_invert:88,fsa_modifi:83,fsa_symbol:88,fsa_vec:[0,88,90],fsavec:[0,83,89,90],fst:[0,1,83,88],fstvec:83,func:86,funciton:83,function_cal:86,futur:[1,83],g:[0,3,4,5,83,86,90],gain:0,gallic:0,gather:83,gcc:[3,5],gcc_dir:3,gdb:86,gdbinit:86,gener:[0,83,88,90],get:[0,3,4,5,86,88],get_aux_label:84,get_best_matching_stat:84,get_forward_scor:91,get_lattic:84,get_properti:83,get_rnnt_logprob:84,get_rnnt_logprobs_joint:84,get_rnnt_logprobs_prun:84,get_rnnt_logprobs_smooth:84,get_rnnt_prune_rang:84,get_rnnt_prune_ranges_deprec:84,get_tot_scor:[0,91],getattr:83,getstacktrac:86,git:[3,4,5,86],github:[1,4,5,6,7,83,85,86],github_act:4,give:[0,83],given:[0,83,88,90],gnu:[4,86,87],go:[4,83],good:83,got:83,gpl:86,gplv3:86,gpu:[2,3,4,5,83,88,90],grad:0,grad_fn:83,gradient:[0,83],grahpviz:83,gram:[0,83],graph:83,graphviz:[5,83,88],greater:[0,83],gtest_filt:4,guarante:83,h:[3,5,83,86],ha:[0,3,4,5,83,86,90,93],had:83,handbook:0,handl:[0,83],happen:[0,86],hash:83,have:[0,1,2,3,4,5,83,86,87,88,90,93],head:4,help:[4,5,83,86],here:[0,83],hi:83,highest:83,highest_phone_plus_on:83,hint:83,histori:83,hit:86,hlg:83,hope:1,host:86,how:[0,2,4,6,83,87,88,90,92],howev:[0,3],hpy:83,html:[6,83,86],http:[0,1,2,4,5,6,83,86],huggingfac:[2,6],human:88,hyp:83,hyp_label:83,hyp_to_ref_map:83,hypothes:83,i:[0,2,4,83,86,90],icefal:1,id:88,idea:[0,83,93],ident:83,identifi:[0,83],ignor:83,ilabel:83,illustr:90,imag:[3,83],implement:[0,83,86,87],impli:83,implicit:83,implicitli:83,impos:83,in_out:83,inc:86,includ:[1,2,3,5,83,86],inclus:83,incorpor:83,increas:83,independ:[0,83,93],index:[0,84],index_add:84,index_add_:83,index_and_sum:84,index_fsa:84,index_select:84,index_sequ:86,index_test:4,index_test_pi:4,indic:[0,3,83],individu:83,inf:83,infer:83,infin:83,info:[83,86],inform:[0,5,83,85,86],inherit:83,initial_valu:83,inner_label:83,input:[0,83,90],ins_del_scor:83,insensit:83,insert:83,insid:[3,4,90],insight:0,instal:[1,3,4,83,88],installpath:2,instanc:[0,2,83,88,93],instead:[0,83,88],instruct:[4,86],int32:[0,83,88,93],int32_:86,int32_t:[3,5,83,86,93],int64:83,integ:[83,88],integr:1,intend:83,intent:83,interchang:0,interest:[0,87],interfac:83,intern:[0,83,86,90],internet:3,interpret:[0,83],intersect:[84,91],intersect_dens:84,intersect_dense_prun:84,intersect_devic:84,intersectdevic:83,interv:83,introduc:86,introduct:0,invalid:[5,83],invers:83,invert:[84,91],invert_:88,inverted_fsa:[83,90],invok:88,involv:83,io:6,is_contigu:83,is_rand_equival:84,isinst:83,ismonoton:83,issu:[1,4,5,83,85,86],issuecom:83,isym:83,item:83,iter:0,its:[0,83,88,90],itself:83,j5:4,j6:5,j:[4,5,83],jobnum:5,joiner:83,joint:83,joint_mutual_information_recurs:84,jupyt:88,just:[0,83,88],k24:83,k2:[2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,90,93],k2_cmake_arg:[3,5],k2_install_prefix:4,k2_make_arg:5,k2_root:4,k2r:83,k:[0,1,83],kaldi:83,keep:[0,83],kei:83,kept:83,kfinalsymbol:83,kfsapropertiesarcsortedanddeterminist:83,kind:[0,83,93],kleen:83,klogsumweightpush:83,klogweightpush:83,know:83,knoweightpush:83,known:[0,4,5,83],ktropicalweightpush:83,kuangfangjun:86,kwarg:[83,86],kwargs_in:86,l23:3,l:83,label:[0,83,90,93],labels_sym:[83,88],lambda:86,lambdat:[3,5],languag:[0,83],larg:83,larger:[5,83],largest:[0,83],last:[0,3,83,86],lat:83,later:[0,83,86,93],latest:[3,4,5,6],lattic:[1,83],law:86,layer:[0,83],layout:83,ld_library_path:[2,3],lead:83,learn:[1,4],least:[4,5,83],leav:[0,83,90],left:83,len:83,length:[83,93],less:83,let:[0,4,83,86],letter:0,level:93,levenshtein:83,levenshtein_align:84,levenshtein_graph:84,lf:1,lh:3,lib64:2,lib:[2,3,4,86,87],libc:86,libcudnn:5,libk2_log:86,libmkl_cor:3,libmkl_intel_ilp64:3,libmkl_intel_thread:3,libpython3:86,librari:[3,86,87],library_path:3,libstdc:86,libthread_db:86,licens:[5,86],like:[0,1,2,3,4,5,83,90],limit:83,line:[3,83,86],linear:83,linear_fsa:84,linear_fsa_with_self_loop:84,linear_fst:84,linear_fst_with_self_loop:84,linguist:0,link:3,linux:[2,4,5,86,87],linux_x86_64:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81],list:[0,3,83,89,93],liter:83,literatur:0,littl:0,ll:83,lm:83,lm_only_scal:83,lm_prob:83,ln:3,load:[3,83,86],local_instal:2,log:[83,87,90],log_add:[0,83],log_prob:83,log_prob_len:83,log_semir:[0,83],log_softmax:83,logadd:90,logger:86,logit:83,logprob:83,logsumexpfunct:83,longtensor:83,look:[0,2,83,87],loop:[0,83,90],loss:[1,83],loss_per_utt:83,lowercas:1,lowest:83,ls:3,lstm:83,lvcsr:0,lwp:86,m:[0,4,7,85],machin:[1,3,4,5],maco:[4,5],macosx_10_9_x86_64:[6,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],mai:[0,3,4,5,83,86,93],main:[0,2,6,83],mainli:83,make:[0,4,5,83],man:2,mandatori:83,mani:[0,1,5,83],manual:86,manylinux2014_x86_64:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],manylinux_2_17_x86_64:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],map:[0,83],mask:83,master:3,match:83,mathrm:0,matric:0,matrix:[0,83],matter:83,max:[0,90],max_active_st:83,max_arc:83,max_num_arc:83,max_num_ax:83,max_num_el:83,max_num_fsa:83,max_ord:83,max_symbol:83,max_token:[83,90],maximum:[0,83],maybeaccess:5,maybecoaccess:5,mean:[0,3,83],meaning:83,measur:83,mechan:83,mehryar:0,member:83,memori:[83,93],mention:[0,83],messag:86,method:[6,83,88],michael:0,might:83,min_active_st:83,min_col_index:83,min_num_arc:83,min_num_ax:83,min_num_el:83,min_num_fsa:83,min_token:83,miniconda3:3,minim:83,minimum:[0,83],mkdir:[4,5],mmi:1,mode:83,model:[0,83],modif:83,modifi:[83,88,90],modified_ctc_graph:83,modified_ctc_topo:83,modul:[3,86],moh97:0,mohri:0,momori:83,mon_may__3_19:2,monoton:83,more:[0,4,5,83,86,90],most:[0,3,83,86,88,90],mostli:[5,83],move:[83,88],mpr02:0,mpr08:0,much:4,multipl:[0,2,83],must:[83,88],mutual:83,mutual_information_recurs:84,mwer:83,mwer_loss:84,mwer_test:83,mwerloss:84,my:83,n:[0,83],name:[0,5,88],nan:83,natur:83,nbest:84,nbest_scal:83,ndim:83,nearli:0,necessari:83,need:[0,2,3,4,5,83,90],need_new2old_index:83,need_num_repeat:83,need_value_index:83,neg:[0,83],negat:83,neighbor:83,neither:[83,90],nest:93,net:83,network:[0,83],neural:[0,83],new2old_index:83,new_fsa:83,newli:83,next:[0,83,86],ngram_ord:83,nnet_output:[0,83],non:[0,83],none:[83,88],nonempti:5,nor:[83,90],normal:[0,4,90],notat:83,note:[0,2,4,83,88,90],notebook:88,noth:83,now:[0,2,83],npath:83,num:83,num_aux_label:83,num_class:83,num_fram:83,num_fsa:[83,88],num_path:83,num_repeat:83,num_row:0,num_stat:[83,88],num_symbol:83,numax:83,number:[0,83,90,93],numer:83,nvcc:2,nvidia:[2,5],nyu:0,o:[0,83],object:[83,86,88],obtain:[85,90],obviou:83,occup:83,occupi:83,oct:3,odd:83,off:[4,5],offlin:88,offset:83,often:[83,90],ok:83,olabel:83,old:3,omit:83,onc:[4,83],one:[0,3,4,5,6,83,88,90],one_best_decod:84,onli:[0,4,5,83,90,93],onlin:[83,86],onlinedenseintersect:84,onto:83,op:83,open:[86,87],openfst:[0,83],opengl:2,oper:[0,83,86,92,94],oppos:83,opposit:[0,83],optim:[83,86],option:[4,5,83,90],order:[0,83,86,88,90],org:[6,83,86],origin:83,orign:83,osym:83,other:[0,1,4,83,86,90],otherwis:[4,5,83,88,90],our:[83,86],out:[0,83,86],out_fsa:83,output:[0,2,4,5,7,83,85,86,90],output_beam:83,outsid:83,over:[0,83],overal:83,overflow:83,overload:83,overrid:83,own:83,p:83,packag:[3,87],pad:0,padding_valu:83,page:[0,2,4,26,45,64,82],pair:[0,83],parallel:[0,5,83],parallelli:83,param:83,paramet:[0,83],part:[0,83,86,93],partial:0,particular:83,partli:83,pass:[3,4,5,83],past:83,path:[0,2,4,83,86,90],path_scor:83,pattern:83,pdf:[0,83],penal:83,penalti:83,per:[83,90],pereira:0,perform:83,permit:86,phone:83,pickl:83,piec:83,pip3:5,pip:[4,5,6,83,88],place:[3,83,88],plan:[4,5],platform:6,pleas:[0,2,3,4,5,6,7,83,85,86,87,88],plu:83,pmatrix:0,png:83,point:[0,83],pose:0,posit:[0,83],possibl:[0,83],post:[7,83],posterior:83,postscript:0,practic:[0,83],pre:[1,7],preced:83,precis:[83,90],predict:[0,83],prefix:83,prepar:[5,83],present:[83,93],prevent:83,previous:83,print:[0,4,5,83,86,87,88,90],prior:83,prob:[0,83],probabl:[0,3,83,87],problem:83,process:[0,1,4,83,86],prod:2,produc:[0,83],produr:83,program:86,propag:[0,83],properti:88,properties_str:5,properties_to_str:84,protect:86,provid:[0,6,7,83,85],prune:83,prune_on_arc_post:84,prune_rang:83,pruned_ranges_to_lattic:84,pseudo:[0,83],pub:0,pull:83,purpos:[0,83],push:83,put:83,pwd:4,px:83,px_grad:83,px_sum:83,py38:[86,87],py:[3,4,5,83,86],py_bytesmain:86,py_grad:83,py_runmain:86,py_sum:83,pybind11:[86,87],pybind11_url:3,pybindraggedani:86,pycfunction_cal:86,pyenv:86,pyeval_evalcod:86,pyeval_evalcodeex:86,pyobject_getitem:86,pyrun_fileexflag:86,pyrun_simplefileexflag:86,python3:[3,4,5,7,83,85,86,87],python:[0,1,3,4,5,83,85,86,87,88],pythonpath:4,pytorch:[0,1,4,5,6,83,85,87,93],quantiti:83,queri:83,question:0,quit:[0,83],r11:2,r12:2,r:[2,4,5],rag:[1,84,88,90,92,93],ragged_attribute_nam:83,ragged_label_nam:83,ragged_tensor:83,ragged_test:4,raggedani:[83,86],raggedarc:83,raggedint:88,raggedshap:[84,93],raggedshapeopstest:4,raggedtensor:[0,84,86,90],rais:83,ram:5,random:83,random_fsa:84,random_fsa_vec:84,random_path:84,random_ragged_shap:84,randomli:83,randomraggedshap:83,rang:[3,5,83],rate:83,rather:[0,83],ratio:83,re:[3,4,83],reach:83,reachabl:83,read:[5,83,86],readabl:88,readi:5,real:[0,83],rearrang:83,reason:[3,83],receiv:83,recent:[3,86],recip:1,recogn:83,recognit:[0,1],recommend:[1,4,7,83],reconstruct:83,record:83,recurs:83,redistribut:86,reduc:[5,83],reduct:83,ref:83,ref_label:83,ref_text:83,refer:[1,5,83,88,90],referenc:3,reflect:83,regular:[0,4,83],regular_ragged_shap:84,reinterpret:[83,90,93],rel:83,relat:[0,83,86],releas:[2,3,5],reli:83,remain:[0,86],remov:[83,90],remove_ep:83,remove_epsilon:84,remove_epsilon_and_add_self_loop:84,remove_epsilon_self_loop:84,remove_fil:83,renam:83,rename_tensor_attribute_:83,render:83,repeat:83,replac:[2,83],replace_fsa:84,replic:83,repo:4,report:[1,83,86],repositori:4,repost:0,repres:[0,83,88],represent:83,request:83,requir:[0,5,83,88,90],requires_grad_:0,rescor:1,reshap:83,resid:88,resolv:[2,6],resourc:86,respect:[0,83],rest:83,result:[0,83,88,90],ret_arc_map:83,return_grad:83,returned_tensor:83,revers:84,revisit:0,rewritten:83,rf:3,right:83,rilei:0,risk:83,rm:3,rnn:83,rnnt:83,rnnt_loss:84,rnnt_loss_prun:84,rnnt_loss_simpl:84,rnnt_loss_smooth:84,rnnt_type:83,rnntdecodingconfig:84,rnntdecodingstream:84,root:[86,87],row:[0,83],row_id:0,row_ids1:83,row_ids2:83,row_index:[0,83],row_split:0,row_splits1:0,row_splits2:0,rpath:3,rule:83,run:[2,3,4,5,83,85,86,88],runtimeerror:[83,86],rwxrwxr:3,s1:90,s2:90,s:[0,3,4,5,83,88,90],s_begin:83,s_end:83,s_rang:83,safe:86,sai:[0,4,5,83],said:83,same:[0,1,3,83,86,88,93],sampl:83,satisf:83,satisfi:83,save:[0,2,83,88],scalar:83,scale:[83,90],score:[0,83,90,93],scores_onli:83,screenshot:88,script:4,seamlessli:1,search:[83,86],search_beam:83,second:[0,4,83,93],section:[2,86],secur:86,see:[0,3,4,6,83,86,87,93],seed:83,seen:87,segment:83,select:[0,83],self:[83,86,88,90],semant:83,semir:[1,83,90],semirng:83,sens:[0,83],sentenc:83,separ:83,seq:83,seqfram:83,seqframe_idx_nam:83,sequenc:83,sequence_index:83,serial:83,set:[0,3,5,83,86,90],set_row_id:83,set_scores_stochastic_:83,setup:[3,4,5,83],sever:[6,83],sh1:2,sh:[2,4],shape1:83,shape2:83,shape3:83,shape:[0,88,93],share:[5,83,87],shared_ptr:[3,5],shell:86,sherpa:4,shorter:83,shortest:[0,83],shortest_path:84,should:[2,4,83],show:[0,3,6,86,88],shown:[0,88,90],side:83,sign:[0,83],silent:2,similar:83,similarli:[0,87],simpili:4,simpl:[1,83],simple_fsa:0,simple_fst:0,simple_ragged_index_select:84,simpli:83,simplifi:83,simul:0,sinc:[0,83,86,90],singl:[0,83,89,90],singleton:83,site:[3,87],size:[0,83],skip:83,slice:83,slightli:83,slow:83,smaller:83,snowfal:83,so:[0,4,5,83,86,87],softmax:[0,83],softwar:[2,3,86],solut:3,some:[0,4,5,83,86],someth:[3,83],sort:[83,90],sorted_fsa:[83,90],sorted_fsa_2:83,sorted_match_a:83,sorted_match_ref:83,sourc:[0,1,2,3,4,6,7,83,86,87],space:83,spars:[0,83],sparse_coo:83,special:[0,83,90],specif:[4,83],specifi:[0,83],speech:[0,1],split:83,springer:0,sqcup:0,src:[83,86],src_idx01:83,src_idx0:83,src_name:83,src_state:[83,93],src_stream:83,stabl:83,stack:[83,86],staff:3,stage:83,stai:83,stand:83,standard:83,star:[2,86,87],start:[0,3,83,86,90],start_fram:83,state:[0,1,83,88,90],stateless:83,statist:83,std:[3,5,86],step1_arc_map:83,step2_arc_map:83,step:[83,86,90],still:83,stop:86,store:[0,83,93],str:83,straightforward:[0,3,90],stream:83,stride:83,string:[4,83,88],strip:2,struct:93,structur:[0,83,93],sub:[83,93],sub_shap:83,sub_shape2:83,sublist:83,subsampl:83,subsampling_factor:83,subsect:90,subsequ:83,subset:[0,83],subtract:83,succe:83,success:[4,83],successfulli:[2,5],sudo:[2,5],suffici:2,suffix:83,suggest:5,suitabl:2,sum_t:83,sumbackward0:83,sumfunct:83,summar:0,summari:[0,3,87],sun_jul_28_19:2,supervis:83,supervision_seg:83,suppli:83,support:[0,1,2,4,5,6,83,88,90],suppos:[0,6,86],svg:[0,83,88,90],swap:[83,88,90],swoosh_l:84,swoosh_l_forward:84,swoosh_l_forward_and_deriv:84,swoosh_r:84,swoosh_r_forward:84,swoosh_r_forward_and_deriv:84,sym_str:88,symbol:[0,86],symbol_begin_rang:83,symbol_range_begin:83,symbol_seq_len:83,symbolt:[84,88],symlink:3,system:[2,3],t2s2c_shape:83,t:[0,2,83,86],t_begin:83,t_end:83,tab:83,tabl:83,take:[0,83],taken:83,tar:2,target:[2,83],target_length:83,task:[0,83],tc445_37:2,tell:[0,7,83,88],temperatur:83,tensor:[0,1,83,86,88,90,92,93],tensorflow:[0,1,93],term:83,termin:83,termination_symbol:83,test:[4,5,83,86,88],text:83,tf:[0,93],tgz:2,th:83,than:[0,4,5,83,90],thei:[0,4,83,87,93],them:[0,7,83,90],themselv:83,theoret:83,therefor:0,thi:[0,2,3,4,6,26,45,64,82,83,86,88,90],thing:[0,86],third:93,those:83,thread:86,three:[0,83,88],threshold:83,threshold_prob:83,through:[0,83],thrown:86,thu:83,thu_feb_10_18:2,thu_nov_18_09:2,tie:90,time2stream2context_shap:83,time:[0,1,5,83],time_seq_len:83,titl:[83,88,90],tmp:3,to_dot:[84,88],to_str:84,to_str_ful:83,to_str_simpl:84,to_tensor:84,togeth:83,token:83,told:[0,93],toler:83,too:[3,83],tool:2,toolkit:[1,2,4,5],top:83,top_sort:84,topolog:83,topsort:5,topsortedandacycl:5,torch1:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79],torch2:[6,23,24,25,42,43,44,61,62,63,80,81],torch:[0,4,6,7,26,45,64,82,83,85,86,87,88,90,93],torch_stabl:6,tot_context:83,tot_scor:83,total:[0,83],total_num_paths_of_current_batch:83,total_scor:0,totsiz:83,trace:86,traceback:[3,86],track:0,tradit:83,train:83,transcript:83,transduc:[0,1,83,90],transfer:83,transit:83,treat:[83,90],treat_epsilons_speci:[83,90],tri:83,trivial:83,trivial_graph:84,tropic:[83,90],tropical_semir:90,truncat:83,tt:3,tue_feb__7_19:2,tupl:[83,88],turn:[0,83],tutori:[1,88,90],two:[0,3,4,5,7,83,88,90,93],txt:5,type:[3,4,5,83,86,88,93],typic:83,ubuntu:[3,86],ultim:83,un:83,unabl:86,unaffect:83,unchang:83,undefin:83,under:83,underli:[83,86],underlin:83,underscor:[83,88],understand:83,unigram:83,uninstal:5,union:84,uniqu:0,unit:83,unless:83,unlik:83,unlimit:83,unnorm:83,unsign:90,unsort:[83,90],up:[0,5,83],updat:[0,3,83],url:0,us:[0,1,2,4,5,6,7,83,85,86,87,88,90,93],usag:83,use_double_scor:[0,83,90],use_log:83,user:[0,3,4,5,83],usr:[83,86],usual:[0,83],util:[7,83,85],utt:83,utter:83,v10:2,v11:2,v12:2,v2:86,v8:2,valid:[5,83],valu:[0,5,88,90,93],value_index:83,value_indexes2:83,valueerror:83,variabl:3,varianc:83,vec:83,vector:[1,83,88],verbos:4,veri:[3,83],version:[1,2,5,6,7,83,84,86],via:[83,88],view:[83,86,88],virtual:83,visibl:0,visit:6,visual:[0,83],vocab:83,vocabulari:83,void_typ:86,vs:[3,5,83,86],w:0,wa:[0,4,83,85,86,93],wai:[0,3,83,87],want:[0,2,5,6,83,90],warn:86,warranti:86,wave:83,we:[0,1,2,4,5,6,7,83,86,87,88,90,93],wed_jul_22_19:2,wed_jun__8_16:2,wed_oct_23_19:2,wed_sep_21_10:2,weight:[0,83],weight_pushing_typ:83,weights_a:83,weights_b:83,welch:90,well:[0,1,83,88,90],were:[0,83,93],wfsa:0,wfst:0,wget:[2,3,6],what:[0,3,83,93],wheel:[1,7],when:[0,4,5,83,90],where:[0,4,83,90],wherea:[0,88],whether:[4,83,88,90],which:[0,2,83,85,88,90,93],whichev:83,whl:[6,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],who:5,whole:83,whole_lattice_rescor:83,whose:83,why:[0,83],wiki:[0,83],wikipedia:83,win_amd64:[6,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],window:[4,5],witch:0,within:83,without:[83,93],won:[0,83],word:[83,86],work:[4,5,83,90],would:[0,4,83,86],wrap:87,write:83,www:86,x64:2,x86_64:[2,4,86,87],x:[2,3,4,5,83],x_:83,xvf:2,xxx:[3,5,83],xxx_filler:83,xz:2,y:[5,83],y_:83,y_t:83,yet:[0,83],yorku:0,you:[0,1,2,3,4,5,6,7,83,85,86,87,88,90],your:[2,3,4,7,83,86],your_github_usernam:4,yourself:83,yyi:83,zero:[0,83]},titles:["Core concepts in k2","k2","CUDA and cuDNN","FAQs","For developers","Install from source","From pre-compiled wheels (recommended)","Installation","torch 1.10.0","torch 1.10.1","torch 1.10.2","torch 1.11.0","torch 1.12.0","torch 1.12.1","torch 1.13.0","torch 1.13.1","torch 1.6.0","torch 1.7.0","torch 1.7.1","torch 1.8.0","torch 1.8.1","torch 1.9.0","torch 1.9.1","torch 2.0.0","torch 2.0.1","torch 2.1.0","Pre-compiled CPU wheels (Linux)","torch 1.10.0","torch 1.10.1","torch 1.10.2","torch 1.11.0","torch 1.12.0","torch 1.12.1","torch 1.13.0","torch 1.13.1","torch 1.6.0","torch 1.7.0","torch 1.7.1","torch 1.8.0","torch 1.8.1","torch 1.9.0","torch 1.9.1","torch 2.0.0","torch 2.0.1","torch 2.1.0","Pre-compiled CPU wheels (macOS)","torch 1.10.0","torch 1.10.1","torch 1.10.2","torch 1.11.0","torch 1.12.0","torch 1.12.1","torch 1.13.0","torch 1.13.1","torch 1.6.0","torch 1.7.0","torch 1.7.1","torch 1.8.0","torch 1.8.1","torch 1.9.0","torch 1.9.1","torch 2.0.0","torch 2.0.1","torch 2.1.0","Pre-compiled CPU wheels (Windows)","torch 1.10.0","torch 1.10.1","torch 1.10.2","torch 1.11.0","torch 1.12.0","torch 1.12.1","torch 1.13.0","torch 1.13.1","torch 1.6.0","torch 1.7.0","torch 1.7.1","torch 1.8.0","torch 1.8.1","torch 1.9.0","torch 1.9.1","torch 2.0.0","torch 2.0.1","Pre-compiled CUDA wheels (Linux)","k2","Python API reference","version","How to debug _k2","_k2","Fsa","Fsa tutorials","Fsa algorithms","Fsa algorithms tutorials","Python tutorials","Basics","Ragged tensor tutorials","Operations"],titleterms:{"0":[2,3,8,11,12,14,16,17,19,21,23,24,25,27,30,31,33,35,36,38,40,42,43,44,46,49,50,52,54,55,57,59,61,62,63,65,68,69,71,73,74,76,78,80,81],"1":[0,2,3,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81],"10":[2,8,9,10,27,28,29,46,47,48,65,66,67],"11":[2,11,30,49,68],"12":[2,12,13,31,32,50,51,69,70],"13":[14,15,33,34,52,53,71,72],"14":3,"2":[0,2,10,23,24,25,29,42,43,44,48,61,62,63,67,80,81],"27":3,"3":2,"5":2,"6":[2,3,16,35,54,73],"7":[2,17,18,36,37,55,56,74,75],"8":[2,3,19,20,38,39,57,58,76,77],"9":[21,22,40,41,59,60,78,79],"function":3,"true":90,A:[0,88],For:4,No:3,__eq__:83,__getattr__:83,__getitem__:83,__getstate__:83,__init__:83,__ne__:83,__repr__:83,__setattr__:83,__setstate__:83,__str__:83,_from_dense_fsa_vec:83,_get_arc_post:83,_get_backward_scor:83,_get_entering_arc:83,_get_forward_scor:83,_get_tot_scor:83,_invalidate_cache_:83,_k2:[86,87],_pyruntim:3,add:83,add_epsilon_self_loop:83,advanc:83,against:3,algorithm:[90,91],api:84,arang:83,arc_sort:[83,90],archiv:3,argmax:83,arrai:0,as_dict:83,aten:3,attribut:0,autograd:0,auxiliari:88,basic:93,beam:83,bin:3,bug:86,buggi:86,build:4,c:3,can:3,cannot:3,cat:83,clone:83,closur:83,code:86,com:3,compat:3,compil:[3,6,26,45,64,82],compos:[83,90],compose_arc_map:83,concept:0,connect:[83,90],content:1,convert_attr_to_rag:83,convert_dense_to_fsa_vec:83,core:0,cpu:[6,26,45,64],create_fsa_vec:83,create_ragged_shape2:83,create_ragged_tensor:83,create_spars:83,ctc_graph:83,ctc_loss:83,ctc_topo:83,ctcloss:83,cuda:[2,6,82],cudnn:2,debug:[4,86],decod:83,decoder_history_len:83,decodestateinfo:83,dens:0,densefsavec:83,determin:83,determinizeweightpushingtyp:83,develop:4,devic:[3,83],dim0:83,directori:3,do_rnnt_prun:83,download:3,draw:83,dtype:83,durat:83,environ:2,error:[3,86],exampl:[0,6],expand_ragged_attribut:83,fail:3,fals:90,faq:3,file:3,find:3,format_output:83,forward:83,found:3,fpic:3,from:[5,6],from_fil:83,from_lattic:83,from_openfst:83,from_str:83,fsa:[0,83,88,89,90,91],fsavec:88,get:83,get_arc_post:83,get_aux_label:83,get_backward_scor:83,get_best_matching_stat:83,get_context:83,get_fil:83,get_forward_scor:[83,90],get_lattic:83,get_lay:83,get_rnnt_logprob:83,get_rnnt_logprobs_joint:83,get_rnnt_logprobs_prun:83,get_rnnt_logprobs_smooth:83,get_rnnt_prune_rang:83,get_rnnt_prune_ranges_deprec:83,get_tot_scor:[83,90],github:3,glibc_2:3,grad:83,gz:3,how:86,http:3,id:83,importerror:3,index:83,index_add:83,index_and_sum:83,index_fsa:83,index_select:83,instal:[2,5,6,7],intersect:[83,90],intersect_dens:83,intersect_dense_prun:83,intersect_devic:83,invalid:3,invert:[83,88,90],invert_:83,is_cpu:88,is_cuda:[83,88],is_rand_equival:83,issu:[3,7],joint_mutual_information_recurs:83,k2:[0,1,83],label:88,later:3,ld:3,levenshtein_align:83,levenshtein_graph:83,lib64:3,libm:3,libpython3:3,linear_fsa:83,linear_fsa_with_self_loop:83,linear_fst:83,linear_fst_with_self_loop:83,linux:[6,26,82],list:88,log:[0,86],log_semir:90,logsumexp:83,lpython_librari:3,maco:[3,6,45],make:3,max:83,max_context:83,max_siz:83,max_stat:83,merg:83,min:83,mkl:3,mutual_information_recurs:83,mwer_loss:83,mwerloss:83,name:83,nbest:83,normal:83,notfound:3,num_arc:83,num_ax:83,num_stream:83,numel:83,object:3,one_best_decod:83,onlinedenseintersect:83,open:3,oper:95,pad:83,pre:[6,26,45,64,82],properti:83,properties_str:83,properties_to_str:83,prune_on_arc_post:83,pruned_ranges_to_lattic:83,pybind11:3,pybind:3,python:[84,92],r_x86_64_pc32:3,rag:[0,83,94],raggedshap:83,raggedtensor:83,random_fsa:83,random_fsa_vec:83,random_path:83,random_ragged_shap:83,recommend:6,recompil:3,refer:[0,84],regular_ragged_shap:83,relat:3,releas:4,reloc:3,remove_axi:83,remove_epsilon:83,remove_epsilon_and_add_self_loop:83,remove_epsilon_self_loop:83,remove_values_eq:83,remove_values_leq:83,rename_tensor_attribut:83,replace_fsa:83,report:7,requir:3,requires_grad:83,requires_grad_:83,revers:83,rnnt_loss:83,rnnt_loss_prun:83,rnnt_loss_simpl:83,rnnt_loss_smooth:83,rnntdecodingconfig:83,rnntdecodingstream:83,row_id:83,row_split:83,score:88,semir:0,set:2,set_scores_stochast:83,shape:83,share:3,shortest_path:83,simpl:0,simple_ragged_index_select:83,singl:88,so:3,sort_:83,sourc:5,sum:83,summari:86,swoosh_l:83,swoosh_l_forward:83,swoosh_l_forward_and_deriv:83,swoosh_r:83,swoosh_r_forward:83,swoosh_r_forward_and_deriv:83,symbol:[3,83,88],symbolt:83,tabl:88,tar:3,tensor:94,terminate_and_flush_to_stream:83,to_dot:83,to_fil:83,to_str:83,to_str_simpl:83,to_tensor:83,tolist:83,top_k:83,top_sort:83,torch:[8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81],tot_siz:83,total_scor:83,trivial_graph:83,tropic:0,tutori:[89,91,92,94],union:83,uniqu:83,us:3,usr:3,v2:3,valu:83,variabl:2,vector:0,version:[3,4,85],visual:88,vocab_s:83,wai:86,wheel:[6,26,45,64,82],when:3,window:[6,64]}}) \ No newline at end of file