export LD_PRELOAD=/opt/intel/mkl/lib/intel64/libmkl_core.so:/opt/intel/mkl/lib/intel64/libmkl_sequential.so:/opt/intel/mkl/lib/intel64/libmkl_intel_thread.so:/opt/intel/mkl/lib/intel64/libiomp5.so:/opt/intel/mkl/lib/intel64/libmkl_mc3.so:/opt/intel/mkl/lib/intel64/libmkl_def.so--
Go to http://kaldi-asr.org/forums.html find out how to join
---
You received this message because you are subscribed to the Google Groups "kaldi-help" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi-help+...@googlegroups.com.
To post to this group, send email to kaldi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kaldi-help/02e09cbb-319a-4e60-b579-e5e648f50c75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/kaldi-help/CAFReZQYux3N38ZqJDtCzr0rH%3DA8XLjMrCLTtBoB6ankcijpiVA%40mail.gmail.com.
I'm vague on using LD_PRELOAD, I don't think it does what you think it does (but I might be mistaken), but I would suggest setting export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/mkl/lib/intel64/
y.
On Mon, Jul 15, 2019 at 10:14 AM J Kokotinis <jkoko...@gmail.com> wrote:
--I tried to upgrade the kaldi in an already running environment.When I try to run the decoding scripts I get the error below:Intel MKL FATAL ERROR: Cannot load libmkl_mc3.so or libmkl_def.so.MKL is installed through the tools/extras/install_mkl.sh script.I also updated the path.sh as suggested here: https://debugjournal.tumblr.com/post/98401758462/intel-mkl-dynamic-link-library-errorexport LD_PRELOAD=/opt/intel/mkl/lib/intel64/libmkl_core.so:/opt/intel/mkl/lib/intel64/libmkl_sequential.so:/opt/intel/mkl/lib/intel64/libmkl_intel_thread.so:/opt/intel/mkl/lib/intel64/libiomp5.so:/opt/intel/mkl/lib/intel64/libmkl_mc3.so:/opt/intel/mkl/lib/intel64/libmkl_def.soAnybody else got this problem? Is there any way to fix it, or should I downgrade kaldi?Thanks!
Go to http://kaldi-asr.org/forums.html find out how to join
---
You received this message because you are subscribed to the Google Groups "kaldi-help" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi...@googlegroups.com.
ldd /root/kaldi/kaldi/src/onlinebin/online-gmm-decode-faster
linux-vdso.so.1 => (0x00007ffc191ea000)
libkaldi-online.so => /root/kaldi/kaldi/src/lib/libkaldi-online.so (0x00007f88b0a30000)
libkaldi-decoder.so => /root/kaldi/kaldi/src/lib/libkaldi-decoder.so (0x00007f88b0660000)
libkaldi-hmm.so => /root/kaldi/kaldi/src/lib/libkaldi-hmm.so (0x00007f88b0390000)
libkaldi-feat.so => /root/kaldi/kaldi/src/lib/libkaldi-feat.so (0x00007f88b0160000)
libkaldi-gmm.so => /root/kaldi/kaldi/src/lib/libkaldi-gmm.so (0x00007f88aff24000)
libkaldi-util.so => /root/kaldi/kaldi/src/lib/libkaldi-util.so (0x00007f88afce9000)
libkaldi-matrix.so => /root/kaldi/kaldi/src/lib/libkaldi-matrix.so (0x00007f88afa4c000)
libkaldi-base.so => /root/kaldi/kaldi/src/lib/libkaldi-base.so (0x00007f88af83f000)
libfst.so.10 => /root/kaldi/kaldi/tools/openfst-1.6.7/lib/libfst.so.10 (0x00007f88af046000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f88aecc4000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f88aeaae000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f88ae6e4000)
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f88ae4dc000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f88ae2bf000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f88adfb6000)
libkaldi-lat.so => /root/kaldi/kaldi/src/lib/libkaldi-lat.so (0x00007f88adbb7000)
libkaldi-fstext.so => /root/kaldi/kaldi/src/lib/libkaldi-fstext.so (0x00007f88ad983000)
libkaldi-tree.so => /root/kaldi/kaldi/src/lib/libkaldi-tree.so (0x00007f88ad72f000)
libkaldi-transform.so => /root/kaldi/kaldi/src/lib/libkaldi-transform.so (0x00007f88ad4f4000)
libmkl_intel_lp64.so => /opt/intel/mkl/lib/intel64/libmkl_intel_lp64.so (0x00007f88ac9a6000)
libmkl_core.so => /opt/intel/mkl/lib/intel64/libmkl_core.so (0x00007f88a881a000)
libmkl_sequential.so => /opt/intel/mkl/lib/intel64/libmkl_sequential.so (0x00007f88a726e000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f88a706a000)
/lib64/ld-linux-x86-64.so.2 (0x00007f88b0c88000)
I'm wondering why this happened in the first place.. it should just work, by design. Perhaps they introduced new librariesand we need to change the configure script? Try to find where those missing libraries are located, and do `ldd some-kaldi-binary` tosee where Kaldi is getting the libraries from.
On Mon, Jul 15, 2019 at 7:44 AM Jan Trmal <jtr...@gmail.com> wrote:
I'm vague on using LD_PRELOAD, I don't think it does what you think it does (but I might be mistaken), but I would suggest setting export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/mkl/lib/intel64/
y.
On Mon, Jul 15, 2019 at 10:14 AM J Kokotinis <jkoko...@gmail.com> wrote:
--I tried to upgrade the kaldi in an already running environment.When I try to run the decoding scripts I get the error below:Intel MKL FATAL ERROR: Cannot load libmkl_mc3.so or libmkl_def.so.MKL is installed through the tools/extras/install_mkl.sh script.I also updated the path.sh as suggested here: https://debugjournal.tumblr.com/post/98401758462/intel-mkl-dynamic-link-library-errorexport LD_PRELOAD=/opt/intel/mkl/lib/intel64/libmkl_core.so:/opt/intel/mkl/lib/intel64/libmkl_sequential.so:/opt/intel/mkl/lib/intel64/libmkl_intel_thread.so:/opt/intel/mkl/lib/intel64/libiomp5.so:/opt/intel/mkl/lib/intel64/libmkl_mc3.so:/opt/intel/mkl/lib/intel64/libmkl_def.soAnybody else got this problem? Is there any way to fix it, or should I downgrade kaldi?Thanks!
Go to http://kaldi-asr.org/forums.html find out how to join
---
You received this message because you are subscribed to the Google Groups "kaldi-help" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi...@googlegroups.com.
To post to this group, send email to kaldi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kaldi-help/02e09cbb-319a-4e60-b579-e5e648f50c75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
Go to http://kaldi-asr.org/forums.html find out how to join
---
You received this message because you are subscribed to the Google Groups "kaldi-help" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi-help+...@googlegroups.com.
To post to this group, send email to kaldi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kaldi-help/56421539-e47d-4e4f-afdc-597266a0946e%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to kaldi-help+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kaldi-help/bd22ffa0-c332-4425-9385-c06b1b739c81%40googlegroups.com.