Fangjun Kuang

Results 683 comments of Fangjun Kuang

If I remember correctly, the cpp code is using tensor accessor to access the data, which does not require a contiguous tensor. But a contiguous tensor is more cache friendly,...

Does this error still exist?

@mnabihali Maybe you are interested in kaldi pybind for the next generation kaldi. We have wrapped kaldi io to Python. For example, to read alignment information, you can use `kaldi.read_vec_int`....

kaldifeat depends on PyTorch, which is using MKL. kaldifeat does not use MKL directly, so there are no configurations for MKL in the CMakeLists.txt. I think PyTorch does not configure...

@songmeixu What is the output of ```bash readelf -d /home/meixu/mambaforge/envs/icefall/lib/python3.9/site-package/torch/_C.*.so ``` ?

Can you find the following files in your conda environment? ``` find /data/miniconda3/envs/k2 -name "libmkl_intel_ilp64*" find /data/miniconda3/envs/k2 -name "libmkl_core*" find /data/miniconda3/envs/k2 -name "libmkl_intel_thread*" ``` If yes, could you post the...

Could you use ```bash export LIBRARY_PATH=/data/miniconda3/envs/k2/lib:$LIBRARY_PATH ``` and run `pip install --verbose kaldifeat` again? **Caution**: It is `LIBRARY_PATH`, not `LD_LIBRARY_PATH`.

@JaheimLee Could you also show the output of ``` ldd /data/miniconda3/envs/k2/lib/python3.9/site-packages/torch/_C.*.so ```

Could you use `pip install --verbose kaldifeat` to get more verbose logs? By the way, you can use `conda install -c kaldifeat kaldifeat`