Pretrained Model

This is the example notebook of how-to-recognize and -synthesize speech using the ESPnet models.

See also:

Author: Takenori Yoshimura

Last update: 2019/07/28

Setup envrionment

Let’s setup the environmet for the demonstration. It takes around 10 minues. Please keep waiting for a while.

[ ]:
# OS setup
!sudo apt-get install bc tree sox
!cat /etc/os-release

# espnet setup
!git clone https://github.com/espnet/espnet
!cd espnet; pip install -e .

# warp ctc setup
!git clone https://github.com/espnet/warp-ctc -b pytorch-1.1
!cd warp-ctc && mkdir build && cd build && cmake .. && make -j
!cd warp-ctc/pytorch_binding && python setup.py install

# kaldi setup
!cd /content/espnet/tools; git clone https://github.com/kaldi-asr/kaldi
!echo "" > ./espnet/tools/kaldi/tools/extras/check_dependencies.sh
!chmod +x ./espnet/tools/kaldi/tools/extras/check_dependencies.sh
!cd ./espnet/tools/kaldi/tools; make sph2pipe sclite
!rm -rf espnet/tools/kaldi/tools/python
!wget https://18-198329952-gh.circle-artifacts.com/0/home/circleci/repo/ubuntu16-featbin.tar.gz
!tar -xf ./ubuntu16-featbin.tar.gz
!cp featbin/* espnet/tools/kaldi/src/featbin/

# sentencepiece setup
!cd espnet/tools; make sentencepiece.done

# make dummy activate
!mkdir -p espnet/tools/venv/bin
!touch espnet/tools/venv/bin/activate
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
  libnvidia-common-410
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  libmagic-mgc libmagic1 libopencore-amrnb0 libopencore-amrwb0 libsox-fmt-alsa
  libsox-fmt-base libsox3
Suggested packages:
  file libsox-fmt-all
The following NEW packages will be installed:
  bc libmagic-mgc libmagic1 libopencore-amrnb0 libopencore-amrwb0
  libsox-fmt-alsa libsox-fmt-base libsox3 sox tree
0 upgraded, 10 newly installed, 0 to remove and 7 not upgraded.
Need to get 887 kB of archives.
After this operation, 7,040 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopencore-amrnb0 amd64 0.1.3-2.1 [92.0 kB]
Get:2 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libopencore-amrwb0 amd64 0.1.3-2.1 [45.8 kB]
Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic-mgc amd64 1:5.32-2ubuntu0.2 [184 kB]
Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic1 amd64 1:5.32-2ubuntu0.2 [68.5 kB]
Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 bc amd64 1.07.1-2 [86.2 kB]
Get:6 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libsox3 amd64 14.4.2-3 [225 kB]
Get:7 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libsox-fmt-alsa amd64 14.4.2-3 [10.6 kB]
Get:8 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libsox-fmt-base amd64 14.4.2-3 [32.0 kB]
Get:9 http://archive.ubuntu.com/ubuntu bionic/universe amd64 sox amd64 14.4.2-3 [101 kB]
Get:10 http://archive.ubuntu.com/ubuntu bionic/universe amd64 tree amd64 1.7.0-5 [40.7 kB]
Fetched 887 kB in 1s (607 kB/s)
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 76, <> line 10.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
dpkg-preconfigure: unable to re-open stdin:
Selecting previously unselected package libopencore-amrnb0:amd64.
(Reading database ... 131331 files and directories currently installed.)
Preparing to unpack .../0-libopencore-amrnb0_0.1.3-2.1_amd64.deb ...
Unpacking libopencore-amrnb0:amd64 (0.1.3-2.1) ...
Selecting previously unselected package libopencore-amrwb0:amd64.
Preparing to unpack .../1-libopencore-amrwb0_0.1.3-2.1_amd64.deb ...
Unpacking libopencore-amrwb0:amd64 (0.1.3-2.1) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../2-libmagic-mgc_1%3a5.32-2ubuntu0.2_amd64.deb ...
Unpacking libmagic-mgc (1:5.32-2ubuntu0.2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../3-libmagic1_1%3a5.32-2ubuntu0.2_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.32-2ubuntu0.2) ...
Selecting previously unselected package bc.
Preparing to unpack .../4-bc_1.07.1-2_amd64.deb ...
Unpacking bc (1.07.1-2) ...
Selecting previously unselected package libsox3:amd64.
Preparing to unpack .../5-libsox3_14.4.2-3_amd64.deb ...
Unpacking libsox3:amd64 (14.4.2-3) ...
Selecting previously unselected package libsox-fmt-alsa:amd64.
Preparing to unpack .../6-libsox-fmt-alsa_14.4.2-3_amd64.deb ...
Unpacking libsox-fmt-alsa:amd64 (14.4.2-3) ...
Selecting previously unselected package libsox-fmt-base:amd64.
Preparing to unpack .../7-libsox-fmt-base_14.4.2-3_amd64.deb ...
Unpacking libsox-fmt-base:amd64 (14.4.2-3) ...
Selecting previously unselected package sox.
Preparing to unpack .../8-sox_14.4.2-3_amd64.deb ...
Unpacking sox (14.4.2-3) ...
Selecting previously unselected package tree.
Preparing to unpack .../9-tree_1.7.0-5_amd64.deb ...
Unpacking tree (1.7.0-5) ...
Setting up tree (1.7.0-5) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Setting up libmagic-mgc (1:5.32-2ubuntu0.2) ...
Setting up libmagic1:amd64 (1:5.32-2ubuntu0.2) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
Setting up libopencore-amrnb0:amd64 (0.1.3-2.1) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Setting up bc (1.07.1-2) ...
Setting up libopencore-amrwb0:amd64 (0.1.3-2.1) ...
Setting up libsox3:amd64 (14.4.2-3) ...
Setting up libsox-fmt-base:amd64 (14.4.2-3) ...
Setting up libsox-fmt-alsa:amd64 (14.4.2-3) ...
Setting up sox (14.4.2-3) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
NAME="Ubuntu"
VERSION="18.04.2 LTS (Bionic Beaver)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 18.04.2 LTS"
VERSION_ID="18.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=bionic
UBUNTU_CODENAME=bionic
Cloning into 'espnet'...
remote: Enumerating objects: 9, done.
remote: Counting objects: 100% (9/9), done.
remote: Compressing objects: 100% (9/9), done.
remote: Total 31907 (delta 0), reused 7 (delta 0), pack-reused 31898
Receiving objects: 100% (31907/31907), 21.99 MiB | 19.56 MiB/s, done.
Resolving deltas: 100% (21508/21508), done.
Obtaining file:///content/espnet
Requirement already satisfied: scipy in /usr/local/lib/python3.6/dist-packages (from espnet==0.4.2) (1.3.0)
Requirement already satisfied: h5py in /usr/local/lib/python3.6/dist-packages (from espnet==0.4.2) (2.8.0)
Collecting chainer==6.0.0 (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/75/39/fa4ac5cf89179d76f7ba1f1897e5c1f2e4d0b89dd9f4e2b5e91b577bc5e1/chainer-6.0.0.tar.gz (880kB)
     |████████████████████████████████| 890kB 4.8MB/s
Collecting python_speech_features>=0.6 (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/ff/d1/94c59e20a2631985fbd2124c45177abaa9e0a4eee8ba8a305aa26fc02a8e/python_speech_features-0.6.tar.gz
Requirement already satisfied: setuptools>=38.5.1 in /usr/local/lib/python3.6/dist-packages (from espnet==0.4.2) (41.0.1)
Collecting scikit-learn==0.20 (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/0c/b2/05be9b6da9ae4a4c54f537be22e95833f722742a02b1e355fdc09363877c/scikit_learn-0.20.0-cp36-cp36m-manylinux1_x86_64.whl (5.3MB)
     |████████████████████████████████| 5.3MB 33.6MB/s
Requirement already satisfied: librosa>=0.6.2 in /usr/local/lib/python3.6/dist-packages (from espnet==0.4.2) (0.6.3)
Collecting soundfile>=0.10.2 (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/68/64/1191352221e2ec90db7492b4bf0c04fd9d2508de67b3f39cbf093cd6bd86/SoundFile-0.10.2-py2.py3-none-any.whl
Requirement already satisfied: inflect>=1.0.0 in /usr/local/lib/python3.6/dist-packages (from espnet==0.4.2) (2.1.0)
Collecting unidecode>=1.0.22 (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/d0/42/d9edfed04228bacea2d824904cae367ee9efd05e6cce7ceaaedd0b0ad964/Unidecode-1.1.1-py2.py3-none-any.whl (238kB)
     |████████████████████████████████| 245kB 14.5MB/s
Collecting editdistance==0.5.2 (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/dc/34/381c67595831fc9daa30c9247cfb8116941fc7380b571a390bbff6da011e/editdistance-0.5.2-cp36-cp36m-manylinux1_x86_64.whl (173kB)
     |████████████████████████████████| 174kB 42.7MB/s
Collecting tensorboardX>=1.4 (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/c3/12/dcaf67e1312475b26db9e45e7bb6f32b540671a9ee120b3a72d9e09bc517/tensorboardX-1.8-py2.py3-none-any.whl (216kB)
     |████████████████████████████████| 225kB 42.3MB/s
Collecting pillow>=5.3.0 (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/14/41/db6dec65ddbc176a59b89485e8cc136a433ed9c6397b6bfe2cd38412051e/Pillow-6.1.0-cp36-cp36m-manylinux1_x86_64.whl (2.1MB)
     |████████████████████████████████| 2.1MB 36.1MB/s
Collecting nara_wpe (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/5b/ea/1c84f7ae087c86ac4572e0958e6c98eb83d8d2c839b355487545a1da0314/nara_wpe-0.0.5-py3-none-any.whl
Collecting museval (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/cf/47/2d5ad70d64dda6f2847a16590518250a5a83d22ab06df65a048a83b279b0/museval-0.2.1-py2.py3-none-any.whl
Collecting pystoi (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/b7/ed/1eec34c221ce40d5ef67d8df97dccc8feadf9e7d06f1269e488cc9330829/pystoi-0.2.2-py2.py3-none-any.whl
Collecting kaldiio (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/f0/a1/43648f5ed6ef7748494589080273f128eeab8fe123f053efd67f4c1ded0b/kaldiio-2.13.8.tar.gz
Collecting funcsigs (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl
Collecting configargparse (from espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/55/ea/f0ade52790bcd687127a302b26c1663bf2e0f23210d5281dbfcd1dfcda28/ConfigArgParse-0.14.0.tar.gz
Requirement already satisfied: PyYAML in /usr/local/lib/python3.6/dist-packages (from espnet==0.4.2) (3.13)
Collecting torch_complex@ git+https://github.com/kamo-naoyuki/pytorch_complex.git from git+https://github.com/kamo-naoyuki/pytorch_complex.git (from espnet==0.4.2)
  Cloning https://github.com/kamo-naoyuki/pytorch_complex.git to /tmp/pip-install-tkahvip8/torch-complex
  Running command git clone -q https://github.com/kamo-naoyuki/pytorch_complex.git /tmp/pip-install-tkahvip8/torch-complex
Collecting pytorch_wpe@ git+https://github.com/nttcslab-sp/dnn_wpe.git from git+https://github.com/nttcslab-sp/dnn_wpe.git (from espnet==0.4.2)
  Cloning https://github.com/nttcslab-sp/dnn_wpe.git to /tmp/pip-install-tkahvip8/pytorch-wpe
  Running command git clone -q https://github.com/nttcslab-sp/dnn_wpe.git /tmp/pip-install-tkahvip8/pytorch-wpe
Requirement already satisfied: numpy>=1.13.3 in /usr/local/lib/python3.6/dist-packages (from scipy->espnet==0.4.2) (1.16.4)
Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from h5py->espnet==0.4.2) (1.12.0)
Requirement already satisfied: typing in /usr/local/lib/python3.6/dist-packages (from chainer==6.0.0->espnet==0.4.2) (3.7.4)
Collecting typing_extensions (from chainer==6.0.0->espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/27/aa/bd1442cfb0224da1b671ab334d3b0a4302e4161ea916e28904ff9618d471/typing_extensions-3.7.4-py3-none-any.whl
Requirement already satisfied: filelock in /usr/local/lib/python3.6/dist-packages (from chainer==6.0.0->espnet==0.4.2) (3.0.12)
Requirement already satisfied: protobuf<3.8.0rc1,>=3.0.0 in /usr/local/lib/python3.6/dist-packages (from chainer==6.0.0->espnet==0.4.2) (3.7.1)
Requirement already satisfied: joblib>=0.12 in /usr/local/lib/python3.6/dist-packages (from librosa>=0.6.2->espnet==0.4.2) (0.13.2)
Requirement already satisfied: numba>=0.38.0 in /usr/local/lib/python3.6/dist-packages (from librosa>=0.6.2->espnet==0.4.2) (0.40.1)
Requirement already satisfied: audioread>=2.0.0 in /usr/local/lib/python3.6/dist-packages (from librosa>=0.6.2->espnet==0.4.2) (2.1.8)
Requirement already satisfied: resampy>=0.2.0 in /usr/local/lib/python3.6/dist-packages (from librosa>=0.6.2->espnet==0.4.2) (0.2.1)
Requirement already satisfied: decorator>=3.0.0 in /usr/local/lib/python3.6/dist-packages (from librosa>=0.6.2->espnet==0.4.2) (4.4.0)
Requirement already satisfied: cffi>=1.0 in /usr/local/lib/python3.6/dist-packages (from soundfile>=0.10.2->espnet==0.4.2) (1.12.3)
Requirement already satisfied: tqdm in /usr/local/lib/python3.6/dist-packages (from nara_wpe->espnet==0.4.2) (4.28.1)
Requirement already satisfied: bottleneck in /usr/local/lib/python3.6/dist-packages (from nara_wpe->espnet==0.4.2) (1.2.1)
Requirement already satisfied: click in /usr/local/lib/python3.6/dist-packages (from nara_wpe->espnet==0.4.2) (7.0)
Requirement already satisfied: jsonschema in /usr/local/lib/python3.6/dist-packages (from museval->espnet==0.4.2) (2.6.0)
Collecting simplejson (from museval->espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/e3/24/c35fb1c1c315fc0fffe61ea00d3f88e85469004713dab488dee4f35b0aff/simplejson-3.16.0.tar.gz (81kB)
     |████████████████████████████████| 81kB 22.6MB/s
Collecting musdb==0.2.3 (from museval->espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/62/62/8678d64230c2d89b916d04791520c243e8e9b46ebdb1acd46be5123fd7ca/musdb-0.2.3-py2.py3-none-any.whl
Requirement already satisfied: llvmlite>=0.25.0dev0 in /usr/local/lib/python3.6/dist-packages (from numba>=0.38.0->librosa>=0.6.2->espnet==0.4.2) (0.29.0)
Requirement already satisfied: pycparser in /usr/local/lib/python3.6/dist-packages (from cffi>=1.0->soundfile>=0.10.2->espnet==0.4.2) (2.19)
Collecting pyaml (from musdb==0.2.3->museval->espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/33/1a/936074f3492156693fc9e471269fc5747fa3b7d9d7f8a33af054f6b24066/pyaml-19.4.1-py2.py3-none-any.whl
Collecting stempeg>=0.1.1 (from musdb==0.2.3->museval->espnet==0.4.2)
  Downloading https://files.pythonhosted.org/packages/29/ab/6e7362cbff21c25e99cfc3ef116057a7f9ebe6f429a44038eef82de3479d/stempeg-0.1.8-py3-none-any.whl (509kB)
     |████████████████████████████████| 512kB 41.6MB/s
Building wheels for collected packages: chainer, python-speech-features, kaldiio, configargparse, torch-complex, pytorch-wpe, simplejson
  Building wheel for chainer (setup.py) ... done
  Stored in directory: /root/.cache/pip/wheels/de/d5/c0/91b2d573b5d77fd1d0be4993a0965700ab245f413d44a3d326
  Building wheel for python-speech-features (setup.py) ... done
  Stored in directory: /root/.cache/pip/wheels/3c/42/7c/f60e9d1b40015cd69b213ad90f7c18a9264cd745b9888134be
  Building wheel for kaldiio (setup.py) ... done
  Stored in directory: /root/.cache/pip/wheels/bd/31/31/f050d5d5bd6fae6f78f96ebc6becfd4972dd248694f9f16c15
  Building wheel for configargparse (setup.py) ... done
  Stored in directory: /root/.cache/pip/wheels/aa/9c/ce/7e904dddb8c7595ffbe3409d24455bc5005852850e36011bda
  Building wheel for torch-complex (setup.py) ... done
  Stored in directory: /tmp/pip-ephem-wheel-cache-wale_xjv/wheels/40/3e/d2/5f746b29e05eb86a7b49a0bc11081269ef656c69c74f026610
  Building wheel for pytorch-wpe (setup.py) ... done
  Stored in directory: /tmp/pip-ephem-wheel-cache-wale_xjv/wheels/50/fb/2e/3b720faf9b2be8e953ade6108fc74fe806e581cdfcda87c51a
  Building wheel for simplejson (setup.py) ... done
  Stored in directory: /root/.cache/pip/wheels/5d/1a/1e/0350bb3df3e74215cd91325344cc86c2c691f5306eb4d22c77
Successfully built chainer python-speech-features kaldiio configargparse torch-complex pytorch-wpe simplejson
ERROR: albumentations 0.1.12 has requirement imgaug<0.2.7,>=0.2.5, but you'll have imgaug 0.2.9 which is incompatible.
ERROR: espnet 0.4.2 has requirement h5py>=2.9.0, but you'll have h5py 2.8.0 which is incompatible.
Installing collected packages: typing-extensions, chainer, python-speech-features, scikit-learn, soundfile, unidecode, editdistance, tensorboardX, pillow, nara-wpe, simplejson, pyaml, stempeg, musdb, museval, pystoi, kaldiio, funcsigs, configargparse, torch-complex, pytorch-wpe, espnet
  Found existing installation: chainer 5.4.0
    Uninstalling chainer-5.4.0:
      Successfully uninstalled chainer-5.4.0
  Found existing installation: scikit-learn 0.21.2
    Uninstalling scikit-learn-0.21.2:
      Successfully uninstalled scikit-learn-0.21.2
  Found existing installation: editdistance 0.5.3
    Uninstalling editdistance-0.5.3:
      Successfully uninstalled editdistance-0.5.3
  Found existing installation: Pillow 4.3.0
    Uninstalling Pillow-4.3.0:
      Successfully uninstalled Pillow-4.3.0
  Running setup.py develop for espnet
Successfully installed chainer-6.0.0 configargparse-0.14.0 editdistance-0.5.2 espnet funcsigs-1.0.2 kaldiio-2.13.8 musdb-0.2.3 museval-0.2.1 nara-wpe-0.0.5 pillow-6.1.0 pyaml-19.4.1 pystoi-0.2.2 python-speech-features-0.6 pytorch-wpe-0.0.0 scikit-learn-0.20.0 simplejson-3.16.0 soundfile-0.10.2 stempeg-0.1.8 tensorboardX-1.8 torch-complex-0.0.1 typing-extensions-3.7.4 unidecode-1.1.1
Cloning into 'warp-ctc'...
remote: Enumerating objects: 827, done.
remote: Total 827 (delta 0), reused 0 (delta 0), pack-reused 827
Receiving objects: 100% (827/827), 386.00 KiB | 1.72 MiB/s, done.
Resolving deltas: 100% (425/425), done.
-- The C compiler identification is GNU 7.4.0
-- The CXX compiler identification is GNU 7.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Found CUDA: /usr/local/cuda (found suitable version "10.0", minimum required is "6.5")
-- cuda found TRUE
-- Building shared library with GPU support
-- Configuring done
-- Generating done
-- Build files have been written to: /content/warp-ctc/build
[ 22%] Building NVCC (Device) object CMakeFiles/warpctc.dir/src/warpctc_generated_reduce.cu.o
[ 22%] Building NVCC (Device) object CMakeFiles/warpctc.dir/src/warpctc_generated_ctc_entrypoint.cu.o
/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::add<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::negate<float, float>, Rop=ctc_helper::add<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(149): here

/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::maximum<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::identity<float, float>, Rop=ctc_helper::maximum<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(157): here

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(115): warning: function "__shfl_up(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(258): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(125): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(126): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::add<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::negate<float, float>, Rop=ctc_helper::add<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(149): here

/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::maximum<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::identity<float, float>, Rop=ctc_helper::maximum<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(157): here

ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 158; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 168; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 178; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 188; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 198; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 564; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 574; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 584; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 594; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 604; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 904; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 920; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 936; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 952; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-11_reduce.compute_30.ptx, line 968; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::add<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::negate<float, float>, Rop=ctc_helper::add<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(149): here

/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::maximum<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::identity<float, float>, Rop=ctc_helper::maximum<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(157): here

ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 159; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 169; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 179; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 189; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 199; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 565; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 575; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 585; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 595; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 605; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 908; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 924; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 940; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-10_reduce.compute_35.ptx, line 956; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::add<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::negate<float, float>, Rop=ctc_helper::add<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(149): here

/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::maximum<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::identity<float, float>, Rop=ctc_helper::maximum<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(157): here

ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 159; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 169; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 179; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 189; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 199; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 565; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 575; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 585; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 595; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 605; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 908; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 924; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 940; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-9_reduce.compute_50.ptx, line 956; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::add<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::negate<float, float>, Rop=ctc_helper::add<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(149): here

/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::maximum<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::identity<float, float>, Rop=ctc_helper::maximum<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(157): here

ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 159; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 169; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 179; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 189; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 199; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 565; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 575; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 585; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 595; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 605; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 908; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 924; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 940; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-8_reduce.compute_52.ptx, line 956; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::add<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::negate<float, float>, Rop=ctc_helper::add<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(149): here

/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::maximum<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::identity<float, float>, Rop=ctc_helper::maximum<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(157): here

ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 159; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 159; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 169; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 169; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 179; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 179; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 189; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 189; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 199; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 199; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 565; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 565; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 575; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 575; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 585; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 585; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 595; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 595; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 605; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 605; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 892; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 908; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 908; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 924; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 924; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 940; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 940; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 956; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 956; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 159; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 169; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 179; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 189; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 199; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 565; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 575; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 585; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 595; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 605; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 908; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 924; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 940; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-7_reduce.compute_60.ptx, line 956; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::add<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::negate<float, float>, Rop=ctc_helper::add<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::negate<float, float>, Rof=ctc_helper::add<float, float>]"
(149): here

/content/warp-ctc/src/reduce.cu(44): warning: function "__shfl_down(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(275): here was declared deprecated ("__shfl_down() is deprecated in favor of __shfl_down_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")
          detected during:
            instantiation of "T CTAReduce<NT, T, Rop>::reduce(int, T, CTAReduce<NT, T, Rop>::Storage &, int, Rop) [with NT=128, T=float, Rop=ctc_helper::maximum<float, float>]"
(76): here
            instantiation of "void reduce_rows<NT,Iop,Rop,T>(Iop, Rop, const T *, T *, int, int) [with NT=128, Iop=ctc_helper::identity<float, float>, Rop=ctc_helper::maximum<float, float>, T=float]"
(124): here
            instantiation of "void ReduceHelper::impl(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(139): here
            instantiation of "ctcStatus_t reduce(Iof, Rof, const T *, T *, int, int, __nv_bool, cudaStream_t) [with T=float, Iof=ctc_helper::identity<float, float>, Rof=ctc_helper::maximum<float, float>]"
(157): here

ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 159; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 169; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 179; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 189; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 199; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 565; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 575; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 585; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 595; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 605; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 908; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 924; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 940; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-6_reduce.compute_61.ptx, line 956; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 159; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 169; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 179; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 189; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 199; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 565; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 575; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 585; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 595; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 605; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 908; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 924; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 940; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000030d_00000000-5_reduce.compute_62.ptx, line 956; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(115): warning: function "__shfl_up(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(258): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(125): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(126): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 1903; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 1907; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 1911; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 1915; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 1919; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 5697; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 5721; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 5725; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 5729; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 5733; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 5737; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 9580; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 9584; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 9606; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 9609; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 9613; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 9617; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 9621; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 13856; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 13881; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 13885; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 13889; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 13893; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 13897; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 18012; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 18016; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 18040; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 18043; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 18047; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 18051; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 18055; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 23584; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 23588; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 23592; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 23596; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 23600; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 28681; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 28706; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 28710; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 28714; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 28718; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 28722; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 33418; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 33422; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 33445; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 33448; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 33452; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 33456; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 33460; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 39361; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 39386; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 39390; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 39394; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 39398; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 39402; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 44712; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 44716; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 44739; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 44742; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 44746; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 44750; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 44754; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 51025; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 51029; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 51052; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 51055; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 51059; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 51063; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 51067; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 57735; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 57739; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 57762; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 57765; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 57769; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 57773; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-11_ctc_entrypoint.compute_30.ptx, line 57777; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(115): warning: function "__shfl_up(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(258): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(125): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(126): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 1880; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 1884; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 1888; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 1892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 1896; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 5613; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 5635; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 5639; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 5643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 5647; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 5651; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 9433; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 9437; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 9459; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 9462; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 9466; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 9470; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 9474; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 13643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 13666; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 13670; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 13674; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 13678; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 13682; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 17736; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 17740; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 17763; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 17766; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 17770; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 17774; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 17778; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 23224; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 23228; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 23232; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 23236; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 23240; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 28288; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 28311; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 28315; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 28319; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 28323; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 28327; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 32977; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 32981; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 33003; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 33006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 33010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 33014; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 33018; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 38835; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 38858; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 38862; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 38866; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 38870; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 38874; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 44150; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 44154; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 44177; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 44180; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 44184; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 44188; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 44192; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 50393; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 50397; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 50420; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 50423; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 50427; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 50431; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 50435; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 57006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 57010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 57033; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 57036; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 57040; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 57044; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-10_ctc_entrypoint.compute_35.ptx, line 57048; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(115): warning: function "__shfl_up(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(258): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(125): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(126): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 1880; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 1884; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 1888; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 1892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 1896; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 5613; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 5635; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 5639; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 5643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 5647; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 5651; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 9433; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 9437; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 9459; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 9462; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 9466; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 9470; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 9474; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 13643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 13666; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 13670; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 13674; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 13678; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 13682; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 17736; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 17740; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 17763; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 17766; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 17770; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 17774; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 17778; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 23224; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 23228; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 23232; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 23236; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 23240; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 28288; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 28311; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 28315; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 28319; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 28323; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 28327; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 32977; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 32981; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 33003; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 33006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 33010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 33014; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 33018; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 38835; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 38858; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 38862; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 38866; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 38870; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 38874; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 44150; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 44154; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 44177; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 44180; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 44184; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 44188; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 44192; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 50393; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 50397; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 50420; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 50423; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 50427; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 50431; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 50435; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 57006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 57010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 57033; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 57036; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 57040; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 57044; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-9_ctc_entrypoint.compute_50.ptx, line 57048; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(115): warning: function "__shfl_up(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(258): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(125): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(126): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 1880; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 1884; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 1888; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 1892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 1896; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 5613; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 5635; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 5639; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 5643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 5647; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 5651; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 9433; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 9437; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 9459; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 9462; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 9466; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 9470; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 9474; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 13643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 13666; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 13670; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 13674; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 13678; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 13682; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 17736; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 17740; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 17763; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 17766; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 17770; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 17774; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 17778; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 23224; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 23228; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 23232; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 23236; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 23240; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 28288; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 28311; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 28315; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 28319; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 28323; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 28327; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 32977; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 32981; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 33003; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 33006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 33010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 33014; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 33018; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 38835; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 38858; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 38862; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 38866; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 38870; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 38874; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 44150; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 44154; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 44177; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 44180; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 44184; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 44188; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 44192; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 50393; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 50397; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 50420; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 50423; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 50427; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 50431; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 50435; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 57006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 57010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 57033; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 57036; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 57040; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 57044; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-8_ctc_entrypoint.compute_52.ptx, line 57048; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(115): warning: function "__shfl_up(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(258): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(125): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(126): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1880; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1880; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1884; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1884; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1888; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1888; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1892; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1896; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1896; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5613; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5613; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5635; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5635; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5639; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5639; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5643; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5647; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5647; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5651; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5651; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9433; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9433; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9437; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9437; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9459; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9459; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9462; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9462; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9466; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9466; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9470; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9470; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9474; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9474; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13643; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13666; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13666; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13670; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13670; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13674; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13674; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13678; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13678; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13682; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13682; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17736; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17736; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17740; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17740; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17763; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17763; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17766; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17766; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17770; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17770; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17774; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17774; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17778; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17778; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23224; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23224; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23228; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23228; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23232; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23232; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23236; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23236; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23240; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23240; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28288; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28288; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28311; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28311; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28315; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28315; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28319; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28319; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28323; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28323; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28327; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28327; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 32977; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 32977; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 32981; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 32981; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33003; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33003; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33006; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33010; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33014; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33014; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33018; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33018; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38835; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38835; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38858; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38858; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38862; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38862; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38866; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38866; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38870; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38870; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38874; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38874; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44150; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44150; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44154; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44154; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44177; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44177; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44180; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44180; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44184; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44184; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44188; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44188; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44192; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44192; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50393; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50393; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50397; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50397; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50420; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50420; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50423; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50423; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50427; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50427; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50431; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50431; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50435; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50435; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57006; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57010; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57033; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57033; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57036; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57036; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57040; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57040; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57044; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57044; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57048; warning : Instruction 'shfl' without '.sync' may produce unpredictable results on sm_70 and later architectures
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57048; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1880; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1884; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1888; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 1896; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5613; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5635; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5639; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5647; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 5651; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9433; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9437; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9459; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9462; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9466; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9470; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 9474; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13666; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13670; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13674; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13678; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 13682; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17736; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17740; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17763; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17766; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17770; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17774; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 17778; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23224; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23228; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23232; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23236; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 23240; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28288; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28311; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28315; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28319; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28323; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 28327; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 32977; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 32981; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33003; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33014; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 33018; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38835; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38858; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38862; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38866; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38870; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 38874; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44150; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44154; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44177; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44180; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44184; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44188; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 44192; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50393; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50397; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50420; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50423; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50427; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50431; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 50435; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57033; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57036; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57040; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57044; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-7_ctc_entrypoint.compute_60.ptx, line 57048; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(115): warning: function "__shfl_up(float, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(258): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(125): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

/content/warp-ctc/include/contrib/moderngpu/include/device/intrinsics.cuh(126): warning: function "__shfl_up(int, unsigned int, int)"
/usr/local/cuda/include/sm_30_intrinsics.hpp(172): here was declared deprecated ("__shfl_up() is deprecated in favor of __shfl_up_sync() and may be removed in a future release (Use -Wno-deprecated-declarations to suppress this warning).")

ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 1880; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 1884; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 1888; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 1892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 1896; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 5613; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 5635; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 5639; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 5643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 5647; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 5651; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 9433; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 9437; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 9459; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 9462; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 9466; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 9470; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 9474; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 13643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 13666; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 13670; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 13674; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 13678; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 13682; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 17736; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 17740; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 17763; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 17766; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 17770; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 17774; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 17778; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 23224; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 23228; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 23232; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 23236; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 23240; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 28288; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 28311; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 28315; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 28319; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 28323; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 28327; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 32977; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 32981; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 33003; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 33006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 33010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 33014; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 33018; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 38835; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 38858; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 38862; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 38866; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 38870; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 38874; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 44150; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 44154; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 44177; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 44180; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 44184; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 44188; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 44192; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 50393; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 50397; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 50420; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 50423; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 50427; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 50431; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 50435; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 57006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 57010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 57033; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 57036; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 57040; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 57044; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-6_ctc_entrypoint.compute_61.ptx, line 57048; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 1880; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 1884; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 1888; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 1892; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 1896; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 5613; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 5635; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 5639; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 5643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 5647; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 5651; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 9433; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 9437; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 9459; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 9462; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 9466; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 9470; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 9474; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 13643; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 13666; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 13670; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 13674; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 13678; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 13682; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 17736; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 17740; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 17763; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 17766; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 17770; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 17774; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 17778; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 23224; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 23228; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 23232; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 23236; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 23240; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 28288; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 28311; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 28315; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 28319; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 28323; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 28327; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 32977; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 32981; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 33003; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 33006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 33010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 33014; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 33018; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 38835; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 38858; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 38862; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 38866; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 38870; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 38874; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 44150; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 44154; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 44177; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 44180; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 44184; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 44188; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 44192; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 50393; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 50397; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 50420; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 50423; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 50427; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 50431; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 50435; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 57006; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 57010; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 57033; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 57036; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 57040; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 57044; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
ptxas /tmp/tmpxft_0000031e_00000000-5_ctc_entrypoint.compute_62.ptx, line 57048; warning : Instruction 'shfl' without '.sync' is deprecated since PTX ISA version 6.0 and will be discontinued in a future PTX ISA version
Scanning dependencies of target warpctc
[ 33%] Linking CXX shared library libwarpctc.so
[ 33%] Built target warpctc
Scanning dependencies of target test_cpu
[ 44%] Building NVCC (Device) object CMakeFiles/test_gpu.dir/tests/test_gpu_generated_test_gpu.cu.o
[ 55%] Building CXX object CMakeFiles/test_cpu.dir/tests/random.cpp.o
[ 66%] Building CXX object CMakeFiles/test_cpu.dir/tests/test_cpu.cpp.o
[ 77%] Linking CXX executable test_cpu
[ 77%] Built target test_cpu
Scanning dependencies of target test_gpu
[ 88%] Building CXX object CMakeFiles/test_gpu.dir/tests/random.cpp.o
[100%] Linking CXX executable test_gpu
[100%] Built target test_gpu
No CUDA runtime is found, using CUDA_HOME='/usr/local/cuda'
Torch was not built with CUDA support, not building warp-ctc GPU extensions.
running install
running bdist_egg
running egg_info
creating warpctc_pytorch.egg-info
writing warpctc_pytorch.egg-info/PKG-INFO
writing dependency_links to warpctc_pytorch.egg-info/dependency_links.txt
writing top-level names to warpctc_pytorch.egg-info/top_level.txt
writing manifest file 'warpctc_pytorch.egg-info/SOURCES.txt'
writing manifest file 'warpctc_pytorch.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib.linux-x86_64-3.6
creating build/lib.linux-x86_64-3.6/warpctc_pytorch
copying warpctc_pytorch/__init__.py -> build/lib.linux-x86_64-3.6/warpctc_pytorch
running build_ext
building 'warpctc_pytorch._warp_ctc' extension
creating build/temp.linux-x86_64-3.6
creating build/temp.linux-x86_64-3.6/src
x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/content/warp-ctc/include -I/usr/local/lib/python3.6/dist-packages/torch/include -I/usr/local/lib/python3.6/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.6/dist-packages/torch/include/TH -I/usr/local/lib/python3.6/dist-packages/torch/include/THC -I/usr/include/python3.6m -c src/binding.cpp -o build/temp.linux-x86_64-3.6/src/binding.o -std=c++11 -fPIC -DTORCH_API_INCLUDE_EXTENSION_H -DTORCH_EXTENSION_NAME=_warp_ctc -D_GLIBCXX_USE_CXX11_ABI=0
x86_64-linux-gnu-g++ -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-Bsymbolic-functions -Wl,-z,relro -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 build/temp.linux-x86_64-3.6/src/binding.o -L/content/warp-ctc/build -lwarpctc -o build/lib.linux-x86_64-3.6/warpctc_pytorch/_warp_ctc.cpython-36m-x86_64-linux-gnu.so -Wl,-rpath,/content/warp-ctc/build
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/warpctc_pytorch
copying build/lib.linux-x86_64-3.6/warpctc_pytorch/_warp_ctc.cpython-36m-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/egg/warpctc_pytorch
copying build/lib.linux-x86_64-3.6/warpctc_pytorch/__init__.py -> build/bdist.linux-x86_64/egg/warpctc_pytorch
byte-compiling build/bdist.linux-x86_64/egg/warpctc_pytorch/__init__.py to __init__.cpython-36.pyc
creating stub loader for warpctc_pytorch/_warp_ctc.cpython-36m-x86_64-linux-gnu.so
byte-compiling build/bdist.linux-x86_64/egg/warpctc_pytorch/_warp_ctc.py to _warp_ctc.cpython-36.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying warpctc_pytorch.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying warpctc_pytorch.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying warpctc_pytorch.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying warpctc_pytorch.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
writing build/bdist.linux-x86_64/egg/EGG-INFO/native_libs.txt
zip_safe flag not set; analyzing archive contents...
warpctc_pytorch.__pycache__._warp_ctc.cpython-36: module references __file__
creating dist
creating 'dist/warpctc_pytorch-0.1.1-py3.6-linux-x86_64.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing warpctc_pytorch-0.1.1-py3.6-linux-x86_64.egg
creating /usr/local/lib/python3.6/dist-packages/warpctc_pytorch-0.1.1-py3.6-linux-x86_64.egg
Extracting warpctc_pytorch-0.1.1-py3.6-linux-x86_64.egg to /usr/local/lib/python3.6/dist-packages
Adding warpctc-pytorch 0.1.1 to easy-install.pth file

Installed /usr/local/lib/python3.6/dist-packages/warpctc_pytorch-0.1.1-py3.6-linux-x86_64.egg
Processing dependencies for warpctc-pytorch==0.1.1
Finished processing dependencies for warpctc-pytorch==0.1.1
Cloning into 'kaldi'...
remote: Enumerating objects: 20, done.
remote: Counting objects: 100% (20/20), done.
remote: Compressing objects: 100% (18/18), done.
remote: Total 102432 (delta 3), reused 6 (delta 1), pack-reused 102412
Receiving objects: 100% (102432/102432), 113.50 MiB | 26.47 MiB/s, done.
Resolving deltas: 100% (79117/79117), done.
extras/check_dependencies.sh
wget -T 10 -t 3 http://www.openslr.org/resources/3/sph2pipe_v2.5.tar.gz || \
wget --no-check-certificate -T 10  https://sourceforge.net/projects/kaldi/files/sph2pipe_v2.5.tar.gz
--2019-07-29 03:42:19--  http://www.openslr.org/resources/3/sph2pipe_v2.5.tar.gz
Resolving www.openslr.org (www.openslr.org)... 46.101.158.64
Connecting to www.openslr.org (www.openslr.org)|46.101.158.64|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 329832 (322K) [application/x-gzip]
Saving to: ‘sph2pipe_v2.5.tar.gz’

sph2pipe_v2.5.tar.g 100%[===================>] 322.10K   589KB/s    in 0.5s

2019-07-29 03:42:20 (589 KB/s) - ‘sph2pipe_v2.5.tar.gz’ saved [329832/329832]

tar --no-same-owner -xzf sph2pipe_v2.5.tar.gz
cd sph2pipe_v2.5/; \
cc -o sph2pipe  *.c -lm
file_headers.c: In function ‘readSphHeader’:
file_headers.c:148:59: warning: format ‘%d’ expects argument of type ‘int’, but argument 5 has type ‘__off_t {aka long int}’ [-Wformat=]
     "Warning:%s: sample_count reset to %d to match size (%d bytes)\n",
                                                          ~^
                                                          %ld
    inpname, sampcount, statbuf.st_size );
                        ~~~~~~~~~~~~~~~
file_headers.c: In function ‘copyshort’:
file_headers.c:326:2: warning: implicit declaration of function ‘swab’; did you mean ‘scalb’? [-Wimplicit-function-declaration]
  swab((char *) &val, short_order.ch, 2 );
  ^~~~
  scalb
file_headers.c: At top level:
file_headers.c:579:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
 ConvertToIeeeExtended(num, bytes)
 ^~~~~~~~~~~~~~~~~~~~~
shorten_x.c: In function ‘fwrite_type’:
shorten_x.c:325:22: warning: implicit declaration of function ‘pcm2alaw’ [-Wimplicit-function-declaration]
       *writebufp++ = pcm2alaw( ulaw2pcm[data0[i]] );
                      ^~~~~~~~
shorten_x.c:381:24: warning: implicit declaration of function ‘pcm2ulaw’ [-Wimplicit-function-declaration]
         *writebufp++ = pcm2ulaw( data0[i] );
                        ^~~~~~~~
shorten_x.c:464:6: warning: implicit declaration of function ‘swab’; did you mean ‘stat’? [-Wimplicit-function-declaration]
      swab(writebuf, writefub, sizeout * nchanout * nitem);
      ^~~~
      stat
sph2pipe.c: In function ‘getUserOpts’:
sph2pipe.c:191:18: warning: implicit declaration of function ‘getopt’; did you mean ‘getsubopt’? [-Wimplicit-function-declaration]
     while (( i = getopt( ac, av, "daupf:c:t:s:h:" )) != EOF )
                  ^~~~~~
                  getsubopt
sph2pipe.c: In function ‘copySamples’:
sph2pipe.c:537:3: warning: implicit declaration of function ‘swab’; did you mean ‘stat’? [-Wimplicit-function-declaration]
   swab( outbuf, inpbuf, nb );      /* it, do byte swapping too */
   ^~~~
   stat
wget -T 10 -t 3 ftp://jaguar.ncsl.nist.gov/pub/sctk-2.4.10-20151007-1312Z.tar.bz2|| \
wget --no-check-certificate -T 10 http://www.openslr.org/resources/4/sctk-2.4.10-20151007-1312Z.tar.bz2
--2019-07-29 03:42:20--  ftp://jaguar.ncsl.nist.gov/pub/sctk-2.4.10-20151007-1312Z.tar.bz2
           => ‘sctk-2.4.10-20151007-1312Z.tar.bz2’
Resolving jaguar.ncsl.nist.gov (jaguar.ncsl.nist.gov)... 129.6.13.27, 2610:20:6005:13::27
Connecting to jaguar.ncsl.nist.gov (jaguar.ncsl.nist.gov)|129.6.13.27|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done.    ==> PWD ... done.
==> TYPE I ... done.  ==> CWD (1) /pub ... done.
==> SIZE sctk-2.4.10-20151007-1312Z.tar.bz2 ... done.

==> PASV ... done.    ==> RETR sctk-2.4.10-20151007-1312Z.tar.bz2 ...
No such file ‘sctk-2.4.10-20151007-1312Z.tar.bz2’.

--2019-07-29 03:42:21--  http://www.openslr.org/resources/4/sctk-2.4.10-20151007-1312Z.tar.bz2
Resolving www.openslr.org (www.openslr.org)... 46.101.158.64
Connecting to www.openslr.org (www.openslr.org)|46.101.158.64|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2008966 (1.9M) [application/x-bzip2]
Saving to: ‘sctk-2.4.10-20151007-1312Z.tar.bz2’

sctk-2.4.10-2015100 100%[===================>]   1.92M  1.95MB/s    in 1.0s

2019-07-29 03:42:22 (1.95 MB/s) - ‘sctk-2.4.10-20151007-1312Z.tar.bz2’ saved [2008966/2008966]

tar xojf sctk-2.4.10-20151007-1312Z.tar.bz2 || \
      tar --exclude '*NONE*html' -xvojf sctk-2.4.10-20151007-1312Z.tar.bz2
rm -rf sctk && ln -s sctk-2.4.10 sctk
cd sctk; make config
make[1]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10'
(mkdir -p bin)
(cd src; make config)
make[2]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src'
(cd asclite; make config)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite'
(cd core; sh config.sh -prefix=`cd ../../..; pwd`)
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for main in -lm... yes
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for unistd.h... (cached) yes
checking for string.h... (cached) yes
checking iostream usability... no
checking iostream presence... no
checking for iostream... no
checking ostream usability... no
checking ostream presence... no
checking for ostream... no
checking fstream usability... no
checking fstream presence... no
checking for fstream... no
checking iomanip usability... no
checking iomanip presence... no
checking for iomanip... no
checking map usability... no
checking map presence... no
checking for map... no
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking for stdlib.h... (cached) yes
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking list usability... no
checking list presence... no
checking for list... no
checking vector usability... no
checking vector presence... no
checking for vector... no
checking set usability... no
checking set presence... no
checking for set... no
checking assert.h usability... yes
checking assert.h presence... yes
checking for assert.h... yes
checking sstream usability... no
checking sstream presence... no
checking for sstream... no
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for install... /usr/bin/install
config.sh: creating ./config.status
config.status: creating makefile
(cd test; sh config.sh -prefix=`cd ../../..; pwd`)
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for main in -lm... yes
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for unistd.h... (cached) yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for install... /usr/bin/install
config.sh: creating ./config.status
config.status: creating makefile
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite'
(cd sclite; sh config.sh -prefix=`cd ../..; pwd`)
creating cache ./config.cache
checking for gcc... gcc
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking whether make sets ${MAKE}... yes
checking for -lm... yes
checking how to run the C preprocessor... gcc -E
checking whether cross-compiling... no
checking for ANSI C header files... yes
checking for unistd.h... yes
checking for working const... yes
checking for size_t... yes
checking for install... /usr/bin/install
Checking installation site
updating cache ./config.cache
creating ./config.status
creating makefile
(cd rfilter1; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd csrfilt; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd chfilt; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd hamzaNorm; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd tanweenFilt; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd acomp; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd def_art; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd hubscr; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd utf_filt; sh config.sh -prefix=`cd ../..; pwd`)
checking for nsgmls... no
checking for onsgmls... no
config.sh: creating ./config.status
config.status: creating makefile
(cd rttmSort; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd rttmSmooth; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd rttm2ctm; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd spkr2sad; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd mergectm2rttm; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd align2html; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd md-eval; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd stm2rttm; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd stmValidator; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd rttmValidator; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd ctmValidator; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
(cd slatreport; sed -e "s:PREFIX=.*:PREFIX=`cd ../..; pwd`:" < makefile.in > makefile)
make[2]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src'
make[1]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10'
touch sctk/.configured
cd sctk; \
make CC="cc" CXX="g++" all && make install && make doc
make[1]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10'
(mkdir -p bin)
(cd src; make all)
make[2]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src'
(cd asclite; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite'
(cd core; make all)
make[4]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite/core'
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os stm_inputparser.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os checker.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os tokenalignment.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os graphalignedtoken.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os recording.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os main.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os graphalignedsegment.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os spkrautooverlap.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os alignedspeechiterator.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os properties.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os filter.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os ctm_inputparser.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os linestyle_inputparser.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os segmentsgroup.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os speechset.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os scorer.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os inputparser.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os graph_coordinate.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os alignedsegment.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os uemfilter.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os trntrn_segmentor.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os id.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os token.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os segmentor.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os compressedlevenshteinmatrix.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os rawsys_reportgenerator.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os statistics.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os ctmstmrttm_segmentor.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os levenshteinmatrix.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os logger.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os speech.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os speakermatch.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os alignedspeech.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os trn_inputparser.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os sgml_reportgenerator.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os reportgenerator.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os alignedsegmentiterator.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os graph.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os segment.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os sgml_generic_reportgenerator.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os alignment.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os arraylevenshteinmatrix.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os levenshtein.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os aligner.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os stt_scorer.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os timedobject.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING_H=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MATH_H=1 -DHAVE_TIME_H=1 -DHAVE_ASSERT_H=1 -DHAVE_FLOAT_H=1 -DHAVE_LIMITS_H=1  -I. -g -Os rttm_inputparser.cpp
cc -g -Os   -c -o lzma/LzmaDec.o lzma/LzmaDec.c
cc -g -Os   -c -o lzma/LzmaLib.o lzma/LzmaLib.c
cc -g -Os   -c -o lzma/Alloc.o lzma/Alloc.c
cc -g -Os   -c -o lzma/LzmaEnc.o lzma/LzmaEnc.c
cc -g -Os   -c -o lzma/LzFind.o lzma/LzFind.c
g++ -o asclite -g -Os  stm_inputparser.o checker.o tokenalignment.o graphalignedtoken.o recording.o main.o graphalignedsegment.o spkrautooverlap.o alignedspeechiterator.o properties.o filter.o ctm_inputparser.o linestyle_inputparser.o segmentsgroup.o speechset.o scorer.o inputparser.o graph_coordinate.o alignedsegment.o uemfilter.o trntrn_segmentor.o id.o token.o segmentor.o compressedlevenshteinmatrix.o rawsys_reportgenerator.o statistics.o ctmstmrttm_segmentor.o levenshteinmatrix.o logger.o speech.o speakermatch.o alignedspeech.o trn_inputparser.o sgml_reportgenerator.o reportgenerator.o alignedsegmentiterator.o graph.o segment.o sgml_generic_reportgenerator.o alignment.o arraylevenshteinmatrix.o levenshtein.o aligner.o stt_scorer.o timedobject.o rttm_inputparser.o lzma/LzmaDec.o lzma/LzmaLib.o lzma/Alloc.o lzma/LzmaEnc.o lzma/LzFind.o -lm
make[4]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite/core'
(cd test; make all)
make[4]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite/test'
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_unit.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_stm_inputparser.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion alignedspeech_test.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_trn_inputparser.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_segment.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_ctmstm_segmentor.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_token.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion perf_benchmark.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion tokenalignment_test.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_ctm_inputparser.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_graphalignedsegment.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_graph.cpp
test_graph.cpp: In member function ‘bool TestGraph::TestAll()’:
test_graph.cpp:38:26: warning: conversion to ‘float’ from ‘int’ may alter its value [-Wconversion]
  float size = MemoryUsage();
               ~~~~~~~~~~~^~
test_graph.cpp:40:10: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
   unit = "KB";
          ^~~~
test_graph.cpp:44:10: warning: ISO C++ forbids converting a string constant to ‘char*’ [-Wwrite-strings]
   unit = "MB";
          ^~~~
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion benchmark.cpp
benchmark.cpp: In member function ‘int Benchmark::GetTestSize()’:
benchmark.cpp:61:20: warning: conversion to ‘int’ from ‘std::vector<SegmentsGroup*>::size_type {aka long unsigned int}’ may alter its value [-Wconversion]
   return tests.size();
          ~~~~~~~~~~^~
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_speechset.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_speech.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion std_benchmark.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_graphalignedtoken.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_levenshtein.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion alignment_test.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_properties.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_trntrn_segmentor.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion alignedsegment_test.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion asctools.cpp
cc -c  -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UNISTD_H=1  -I. -I../core -Os  -Wall -Wconversion test_rttm_inputparser.cpp
g++ -o asclite_test -Os  -Wall -Wconversion  test_unit.o test_stm_inputparser.o alignedspeech_test.o test_trn_inputparser.o test_segment.o test_ctmstm_segmentor.o test_token.o perf_benchmark.o tokenalignment_test.o test_ctm_inputparser.o test_graphalignedsegment.o test_graph.o benchmark.o test_speechset.o test_speech.o std_benchmark.o test_graphalignedtoken.o test_levenshtein.o alignment_test.o test_properties.o test_trntrn_segmentor.o alignedsegment_test.o asctools.o test_rttm_inputparser.o ../core/ctm_inputparser.o ../core/statistics.o ../core/stm_inputparser.o ../core/alignedspeechiterator.o ../core/speech.o ../core/properties.o ../core/filter.o ../core/speechset.o ../core/scorer.o ../core/checker.o ../core/alignedsegment.o ../core/rawsys_reportgenerator.o ../core/alignment.o ../core/levenshtein.o ../core/alignedspeech.o ../core/trn_inputparser.o ../core/sgml_reportgenerator.o ../core/graph.o ../core/arraylevenshteinmatrix.o ../core/aligner.o ../core/id.o ../core/timedobject.o ../core/graphalignedtoken.o ../core/graphalignedsegment.o ../core/spkrautooverlap.o ../core/speakermatch.o ../core/ctmstmrttm_segmentor.o ../core/uemfilter.o ../core/linestyle_inputparser.o ../core/graph_coordinate.o ../core/levenshteinmatrix.o ../core/inputparser.o ../core/trntrn_segmentor.o ../core/segment.o ../core/stt_scorer.o ../core/segmentor.o ../core/compressedlevenshteinmatrix.o ../core/recording.o ../core/rttm_inputparser.o ../core/tokenalignment.o ../core/logger.o ../core/segmentsgroup.o ../core/reportgenerator.o ../core/alignedsegmentiterator.o ../core/token.o ../core/sgml_generic_reportgenerator.o ../core/lzma/LzmaDec.o ../core/lzma/LzmaLib.o ../core/lzma/Alloc.o ../core/lzma/LzmaEnc.o ../core/lzma/LzFind.o -lm
make[4]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite/test'
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite'
(cd sclite; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/sclite'
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os order.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os rsprintf.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os path.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os text.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os scores.c
scores.c: In function ‘load_SCORES_sgml’:
scores.c:505:35: warning: comparison between pointer and zero character constant [-Wpointer-compare]
    if ((tp2 = TEXT_strchr(tp,','))==NULL_TEXT){
                                   ^~
scores.c:505:8: note: did you mean to dereference the pointer?
    if ((tp2 = TEXT_strchr(tp,','))==NULL_TEXT){
        ^
scores.c:667:37: warning: comparison between pointer and zero character constant [-Wpointer-compare]
    if ((p2 = TEXT_strchr(p1+1,',')) == NULL_TEXT)
                                     ^~
scores.c:667:8: note: did you mean to dereference the pointer?
    if ((p2 = TEXT_strchr(p1+1,',')) == NULL_TEXT)
        ^
scores.c:677:39: warning: comparison between pointer and zero character constant [-Wpointer-compare]
         if ((p3 = TEXT_strchr(p1,'+'))==NULL_TEXT){
                                       ^~
scores.c:677:13: note: did you mean to dereference the pointer?
         if ((p3 = TEXT_strchr(p1,'+'))==NULL_TEXT){
             ^
scores.c:691:39: warning: comparison between pointer and zero character constant [-Wpointer-compare]
         if ((p3 = TEXT_strchr(p1,'+'))==NULL_TEXT){
                                       ^~
scores.c:691:13: note: did you mean to dereference the pointer?
         if ((p3 = TEXT_strchr(p1,'+'))==NULL_TEXT){
             ^
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os word.c
word.c: In function ‘release_WORD’:
word.c:330:19: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (tw->value != NULL_TEXT) TEXT_free(tw->value);
                   ^~
word.c:330:9: note: did you mean to dereference the pointer?
     if (tw->value != NULL_TEXT) TEXT_free(tw->value);
         ^
word.c:331:26: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (tw->intern_value != NULL_TEXT) TEXT_free(tw->intern_value);
                          ^~
word.c:331:9: note: did you mean to dereference the pointer?
     if (tw->intern_value != NULL_TEXT) TEXT_free(tw->intern_value);
         ^
word.c:332:18: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (tw->tag1 != NULL_TEXT) TEXT_free(tw->tag1);
                  ^~
word.c:332:9: note: did you mean to dereference the pointer?
     if (tw->tag1 != NULL_TEXT) TEXT_free(tw->tag1);
         ^
word.c:333:18: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (tw->tag2 != NULL_TEXT) TEXT_free(tw->tag2);
                  ^~
word.c:333:9: note: did you mean to dereference the pointer?
     if (tw->tag2 != NULL_TEXT) TEXT_free(tw->tag2);
         ^
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os rpg.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os statdist.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os pad.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os sgml.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os readpipe.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os alex.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os sc_dtl.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os det.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os wwscr_f.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os corresp.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os slm_intf.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os addarc1.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os delarc1.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os llist.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os marc1.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os arcseq1.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os mnode1.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os boolpr1.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os killarc1.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os net_adt.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os knode2.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os net_dp.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os stm.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os align.c
align.c: In function ‘remove_id’:
align.c:29:17: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (R_paren == NULL_TEXT && L_paren == NULL_TEXT)
                 ^~
align.c:29:9: note: did you mean to dereference the pointer?
     if (R_paren == NULL_TEXT && L_paren == NULL_TEXT)
         ^
align.c:29:41: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (R_paren == NULL_TEXT && L_paren == NULL_TEXT)
                                         ^~
align.c:29:33: note: did you mean to dereference the pointer?
     if (R_paren == NULL_TEXT && L_paren == NULL_TEXT)
                                 ^
align.c:32:17: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (R_paren == NULL_TEXT || L_paren == NULL_TEXT){
                 ^~
align.c:32:9: note: did you mean to dereference the pointer?
     if (R_paren == NULL_TEXT || L_paren == NULL_TEXT){
         ^
align.c:32:41: warning: comparison between pointer and zero character constant [-Wpointer-compare]
     if (R_paren == NULL_TEXT || L_paren == NULL_TEXT){
                                         ^~
align.c:32:33: note: did you mean to dereference the pointer?
     if (R_paren == NULL_TEXT || L_paren == NULL_TEXT){
                                 ^
align.c: In function ‘extract_speaker’:
align.c:63:33: warning: comparison between pointer and zero character constant [-Wpointer-compare]
  if (((p = TEXT_strchr(id,'-')) == NULL_TEXT) &&
                                 ^~
align.c:63:7: note: did you mean to dereference the pointer?
  if (((p = TEXT_strchr(id,'-')) == NULL_TEXT) &&
       ^
align.c:64:33: warning: comparison between pointer and zero character constant [-Wpointer-compare]
      ((p = TEXT_strchr(id,'_')) == NULL_TEXT)){
                                 ^~
align.c:64:7: note: did you mean to dereference the pointer?
      ((p = TEXT_strchr(id,'_')) == NULL_TEXT)){
       ^
align.c: In function ‘set_temp_files’:
align.c:933:15: warning: implicit declaration of function ‘getpid’; did you mean ‘set_pad’? [-Wimplicit-function-declaration]
     int pid = getpid();
               ^~~~~~
               set_pad
align.c: In function ‘align_trans_mode_diff’:
align.c:1070:5: warning: implicit declaration of function ‘unlink’; did you mean ‘unix’? [-Wimplicit-function-declaration]
     unlink(refwords);
     ^~~~~~
     unix
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os dwtoke2.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os fillmrks.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os wtokeini.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os lur.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os stm2ctm.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os ctm2ctm.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os mfa.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os cores.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os rank.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os range.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os anovar.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os signtest.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os wilcoxon.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os sentmcn.c
cc -c  -DHAVE_LIBM=1 -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1  -I. -Os mtchprs.c
mtchprs.c: In function ‘count_seg’:
mtchprs.c:588:14: warning: too many arguments for format [-Wformat-extra-args]
       printf("Count Segment: segment# %3d:  sys1=[beg=%d,end=%d,ref=%d,err=%d] sys2=[beg=%d,end=%d,ref=%d,err=%d]\n",
              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc -o sclite -Os  order.o rsprintf.o path.o text.o scores.o word.o rpg.o statdist.o pad.o sgml.o readpipe.o alex.o sc_dtl.o det.o wwscr_f.o corresp.o slm_intf.o addarc1.o delarc1.o llist.o marc1.o arcseq1.o mnode1.o boolpr1.o killarc1.o net_adt.o knode2.o net_dp.o  stm.o align.o dwtoke2.o fillmrks.o wtokeini.o lur.o stm2ctm.o ctm2ctm.o mfa.o cores.o rank.o range.o anovar.o signtest.o wilcoxon.o sentmcn.o mtchprs.o  sclite.c -lm
sclite.c: In function ‘proc_args’:
sclite.c:579:15: warning: implicit declaration of function ‘TEXT_set_lang_prof’; did you mean ‘TEXT_set_encoding’? [-Wimplicit-function-declaration]
          if (!TEXT_set_lang_prof(argv[opt+1]))
               ^~~~~~~~~~~~~~~~~~
               TEXT_set_encoding
cc -o sc_stats -Os  order.o rsprintf.o path.o text.o scores.o word.o rpg.o statdist.o pad.o sgml.o readpipe.o alex.o sc_dtl.o det.o wwscr_f.o corresp.o slm_intf.o addarc1.o delarc1.o llist.o marc1.o arcseq1.o mnode1.o boolpr1.o killarc1.o net_adt.o knode2.o net_dp.o  stm.o align.o dwtoke2.o fillmrks.o wtokeini.o lur.o stm2ctm.o ctm2ctm.o mfa.o cores.o rank.o range.o anovar.o signtest.o wilcoxon.o sentmcn.o mtchprs.o  sc_stats.c -lm
cc -o rover -Os  order.o rsprintf.o path.o text.o scores.o word.o rpg.o statdist.o pad.o sgml.o readpipe.o alex.o sc_dtl.o det.o wwscr_f.o corresp.o slm_intf.o addarc1.o delarc1.o llist.o marc1.o arcseq1.o mnode1.o boolpr1.o killarc1.o net_adt.o knode2.o net_dp.o  stm.o align.o dwtoke2.o fillmrks.o wtokeini.o lur.o stm2ctm.o ctm2ctm.o mfa.o cores.o rank.o range.o anovar.o signtest.o wilcoxon.o sentmcn.o mtchprs.o  rover.c -lm
cc -o sctkUnit -Os  order.o rsprintf.o path.o text.o scores.o word.o rpg.o statdist.o pad.o sgml.o readpipe.o alex.o sc_dtl.o det.o wwscr_f.o corresp.o slm_intf.o addarc1.o delarc1.o llist.o marc1.o arcseq1.o mnode1.o boolpr1.o killarc1.o net_adt.o knode2.o net_dp.o  stm.o align.o dwtoke2.o fillmrks.o wtokeini.o lur.o stm2ctm.o ctm2ctm.o mfa.o cores.o rank.o range.o anovar.o signtest.o wilcoxon.o sentmcn.o mtchprs.o  sctkUnit.c -lm
sctkUnit.c: In function ‘unitTestTEXT’:
sctkUnit.c:1156:6: warning: implicit declaration of function ‘TEXT_set_lang_prof’; did you mean ‘TEXT_set_encoding’? [-Wimplicit-function-declaration]
      TEXT_set_lang_prof("babel_turkish");
      ^~~~~~~~~~~~~~~~~~
      TEXT_set_encoding
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/sclite'
(cd rfilter1; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rfilter1'
On cygwin, it is possible this compilation will fail, please see/adapt the rfilter1/makefile OPTIONS entry
gcc -DNEED_STRCMP=1 -o rfilter1 rfilter1.c
In file included from rfilter1.c:94:0:
include/strdup2.c: In function ‘strdup_safe’:
include/strdup2.c:18:49: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
   if (memory_trace) printf("%s MALLOC %x\n",pdb,(int)pd);
                                                 ^
In file included from rfilter1.c:102:0:
include/calloc2.c: In function ‘calloc_safe’:
include/calloc2.c:16:49: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
   if (memory_trace) printf("%s CALLOC %x\n",pdb,(int)x);
                                                 ^
In file included from rfilter1.c:112:0:
include/frstr1.c: In function ‘free_str’:
include/frstr1.c:9:49: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      {if (memory_trace) printf("*DB: FREE %x\n",(int)s);
                                                 ^
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rfilter1'
(cd csrfilt; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/csrfilt'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/csrfilt'
(cd chfilt; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/chfilt'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/chfilt'
(cd hamzaNorm; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/hamzaNorm'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/hamzaNorm'
(cd tanweenFilt; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/tanweenFilt'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/tanweenFilt'
(cd acomp; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/acomp'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/acomp'
(cd def_art; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/def_art'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/def_art'
(cd hubscr; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/hubscr'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/hubscr'
(cd utf_filt; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/utf_filt'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/utf_filt'
(cd rttmSort; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmSort'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmSort'
(cd rttm2ctm; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttm2ctm'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttm2ctm'
(cd rttmSmooth; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmSmooth'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmSmooth'
(cd spkr2sad; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/spkr2sad'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/spkr2sad'
(cd mergectm2rttm; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/mergectm2rttm'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/mergectm2rttm'
(cd align2html; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/align2html'
perl buildInstallVersion.pl > align2html.pl
chmod +x align2html.pl
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/align2html'
(cd md-eval; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/md-eval'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/md-eval'
(cd stm2rttm; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/stm2rttm'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/stm2rttm'
(cd stmValidator; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/stmValidator'
perl buildInstallVersion.pl > stmValidator.pl
chmod +x stmValidator.pl
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/stmValidator'
(cd rttmValidator; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmValidator'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmValidator'
(cd ctmValidator; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/ctmValidator'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/ctmValidator'
(cd slatreport; make all)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/slatreport'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/slatreport'
make[2]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src'
make[1]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10'
make[1]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10'
(mkdir -p bin)
(cd src; make install)
make[2]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src'
(cd asclite; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite'
(cd core; make install)
make[4]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite/core'
for p in asclite; do \
        /usr/bin/install $p /content/espnet/tools/kaldi/tools/sctk/bin/$p; \
done
make[4]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite/core'
(cd test; make install)
make[4]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite/test'
make[4]: Nothing to be done for 'install'.
make[4]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite/test'
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/asclite'
(cd sclite; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/sclite'
/bin/sh: 5: Syntax error: end of file unexpected (expecting "done")
makefile:171: recipe for target 'testinstalldirs' failed
make[3]: [testinstalldirs] Error 2 (ignored)
for p in sclite sc_stats rover sctkUnit; do \
  /usr/bin/install $p /content/espnet/tools/kaldi/tools/sctk/bin/$p; \
done
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/sclite'
(cd rfilter1; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rfilter1'
install rfilter1 /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rfilter1'
(cd csrfilt; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/csrfilt'
cp csrfilt.sh /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/csrfilt'
(cd chfilt; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/chfilt'
cp chfilt.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/chfilt'
(cd hamzaNorm; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/hamzaNorm'
cp hamzaNorm.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/hamzaNorm'
(cd tanweenFilt; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/tanweenFilt'
cp tanweenFilt.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/tanweenFilt'
(cd acomp; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/acomp'
cp acomp.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/acomp'
(cd def_art; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/def_art'
cp def_art.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/def_art'
(cd hubscr; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/hubscr'
cp hubscr.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/hubscr'
(cd utf_filt; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/utf_filt'
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/utf_filt'
(cd rttmSort; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmSort'
cp rttmSort.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmSort'
(cd rttm2ctm; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttm2ctm'
cp rttm2ctm.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttm2ctm'
(cd rttmSmooth; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmSmooth'
cp rttmSmooth.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmSmooth'
(cd spkr2sad; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/spkr2sad'
cp spkr2sad.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/spkr2sad'
(cd mergectm2rttm; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/mergectm2rttm'
cp mergectm2rttm.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/mergectm2rttm'
(cd align2html; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/align2html'
perl buildInstallVersion.pl > /content/espnet/tools/kaldi/tools/sctk/bin/align2html.pl
chmod +x /content/espnet/tools/kaldi/tools/sctk/bin/align2html.pl
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/align2html'
(cd md-eval; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/md-eval'
cp md-eval.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/md-eval'
(cd stm2rttm; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/stm2rttm'
cp stm2rttm.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/stm2rttm'
(cd stmValidator; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/stmValidator'
perl buildInstallVersion.pl > stmValidator.pl
chmod +x stmValidator.pl
perl buildInstallVersion.pl > /content/espnet/tools/kaldi/tools/sctk/bin/stmValidator.pl
chmod +x /content/espnet/tools/kaldi/tools/sctk/bin/stmValidator.pl
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/stmValidator'
(cd rttmValidator; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmValidator'
cp rttmValidator.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/rttmValidator'
(cd ctmValidator; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/ctmValidator'
cp ctmValidator.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/ctmValidator'
(cd slatreport; make install)
make[3]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/slatreport'
cp slatreport.pl /content/espnet/tools/kaldi/tools/sctk/bin
make[3]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src/slatreport'
make[2]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/src'
make[1]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10'
make[1]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10'
(cd doc; make all)
make[2]: Entering directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/doc'
for p in align2html asclite ctmValidator mergectm2rttm; do \
        pod2man $p.pod -o $p.1; \
        pod2html $p.pod > $p.html; \
done 2> /dev/null
make[2]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10/doc'
make[1]: Leaving directory '/content/espnet/tools/kaldi/tools/sctk-2.4.10'
--2019-07-29 03:43:54--  https://18-198329952-gh.circle-artifacts.com/0/home/circleci/repo/ubuntu16-featbin.tar.gz
Resolving 18-198329952-gh.circle-artifacts.com (18-198329952-gh.circle-artifacts.com)... 3.220.51.42, 34.200.166.190, 18.208.47.82, ...
Connecting to 18-198329952-gh.circle-artifacts.com (18-198329952-gh.circle-artifacts.com)|3.220.51.42|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/gzip]
Saving to: ‘ubuntu16-featbin.tar.gz’

ubuntu16-featbin.ta     [      <=>           ] 509.86M  38.1MB/s    in 13s

2019-07-29 03:44:08 (38.4 MB/s) - ‘ubuntu16-featbin.tar.gz’ saved [534627015]

rm -rf sentencepiece
git clone https://github.com/google/sentencepiece.git
Cloning into 'sentencepiece'...
remote: Enumerating objects: 132, done.
remote: Counting objects: 100% (132/132), done.
remote: Compressing objects: 100% (107/107), done.
remote: Total 2506 (delta 41), reused 64 (delta 23), pack-reused 2374
Receiving objects: 100% (2506/2506), 22.70 MiB | 20.52 MiB/s, done.
Resolving deltas: 100% (1631/1631), done.
cd sentencepiece && git checkout v0.1.82 && mkdir build && cd build && (cmake3 .. || cmake ..) && make
Note: checking out 'v0.1.82'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:

  git checkout -b <new-branch-name>

HEAD is now at ffa2c82 fixed bug of is_unknown in Python module
/bin/sh: 1: cmake3: not found
-- VERSION: 0.1.82
-- The CXX compiler identification is GNU 7.4.0
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for C++ include pthread.h
-- Looking for C++ include pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Not Found TCMalloc: TCMALLOC_LIB-NOTFOUND
-- Configuring done
-- Generating done
-- Build files have been written to: /content/espnet/tools/sentencepiece/build
make[1]: Entering directory '/content/espnet/tools/sentencepiece/build'
make[2]: Entering directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target sentencepiece
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[  0%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/arena.cc.o
[  1%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/arenastring.cc.o
[  2%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/bytestream.cc.o
[  3%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/coded_stream.cc.o
[  4%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/common.cc.o
[  5%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/extension_set.cc.o
[  6%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o
[  7%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/generated_message_util.cc.o
[  8%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/implicit_weak_message.cc.o
[  9%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/int128.cc.o
[ 10%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/io_win32.cc.o
[ 11%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/message_lite.cc.o
[ 12%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/repeated_field.cc.o
[ 12%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/status.cc.o
[ 13%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/statusor.cc.o
[ 14%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/stringpiece.cc.o
[ 15%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/stringprintf.cc.o
[ 16%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/structurally_valid.cc.o
[ 17%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/strutil.cc.o
[ 18%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/time.cc.o
[ 19%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/wire_format_lite.cc.o
[ 20%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/zero_copy_stream.cc.o
[ 21%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o
[ 22%] Building CXX object src/CMakeFiles/sentencepiece.dir/builtin_pb/sentencepiece.pb.cc.o
[ 23%] Building CXX object src/CMakeFiles/sentencepiece.dir/builtin_pb/sentencepiece_model.pb.cc.o
[ 24%] Building CXX object src/CMakeFiles/sentencepiece.dir/bpe_model.cc.o
[ 25%] Building CXX object src/CMakeFiles/sentencepiece.dir/char_model.cc.o
[ 25%] Building CXX object src/CMakeFiles/sentencepiece.dir/error.cc.o
[ 26%] Building CXX object src/CMakeFiles/sentencepiece.dir/filesystem.cc.o
[ 27%] Building CXX object src/CMakeFiles/sentencepiece.dir/flags.cc.o
[ 28%] Building CXX object src/CMakeFiles/sentencepiece.dir/model_factory.cc.o
[ 29%] Building CXX object src/CMakeFiles/sentencepiece.dir/model_interface.cc.o
[ 30%] Building CXX object src/CMakeFiles/sentencepiece.dir/normalizer.cc.o
[ 31%] Building CXX object src/CMakeFiles/sentencepiece.dir/sentencepiece_processor.cc.o
[ 32%] Building CXX object src/CMakeFiles/sentencepiece.dir/unigram_model.cc.o
[ 33%] Building CXX object src/CMakeFiles/sentencepiece.dir/util.cc.o
[ 34%] Building CXX object src/CMakeFiles/sentencepiece.dir/word_model.cc.o
[ 35%] Building CXX object src/CMakeFiles/sentencepiece.dir/__/third_party/absl/strings/string_view.cc.o
[ 36%] Linking CXX shared library libsentencepiece.so
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[ 36%] Built target sentencepiece
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target sentencepiece_train-static
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[ 37%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/builder.cc.o
[ 38%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/unicode_script.cc.o
[ 39%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/trainer_factory.cc.o
[ 40%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/trainer_interface.cc.o
[ 41%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/unigram_model_trainer.cc.o
[ 42%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/word_model_trainer.cc.o
[ 42%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/char_model_trainer.cc.o
[ 43%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/bpe_model_trainer.cc.o
[ 44%] Building CXX object src/CMakeFiles/sentencepiece_train-static.dir/sentencepiece_trainer.cc.o
[ 45%] Linking CXX static library libsentencepiece_train.a
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[ 45%] Built target sentencepiece_train-static
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target spm_encode
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[ 46%] Building CXX object src/CMakeFiles/spm_encode.dir/spm_encode_main.cc.o
[ 47%] Linking CXX executable spm_encode
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[ 47%] Built target spm_encode
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target sentencepiece_train
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[ 48%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/builder.cc.o
[ 49%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/unicode_script.cc.o
[ 50%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/trainer_factory.cc.o
[ 50%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/trainer_interface.cc.o
[ 51%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/unigram_model_trainer.cc.o
[ 52%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/word_model_trainer.cc.o
[ 53%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/char_model_trainer.cc.o
[ 54%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/bpe_model_trainer.cc.o
[ 55%] Building CXX object src/CMakeFiles/sentencepiece_train.dir/sentencepiece_trainer.cc.o
[ 56%] Linking CXX shared library libsentencepiece_train.so
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[ 56%] Built target sentencepiece_train
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target spm_train
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[ 57%] Building CXX object src/CMakeFiles/spm_train.dir/spm_train_main.cc.o
[ 58%] Linking CXX executable spm_train
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[ 58%] Built target spm_train
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target spm_decode
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[ 59%] Building CXX object src/CMakeFiles/spm_decode.dir/spm_decode_main.cc.o
[ 60%] Linking CXX executable spm_decode
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[ 60%] Built target spm_decode
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target spm_normalize
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[ 61%] Building CXX object src/CMakeFiles/spm_normalize.dir/spm_normalize_main.cc.o
[ 62%] Linking CXX executable spm_normalize
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[ 62%] Built target spm_normalize
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target sentencepiece-static
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[ 63%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/arena.cc.o
[ 63%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/arenastring.cc.o
[ 64%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/bytestream.cc.o
[ 65%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/coded_stream.cc.o
[ 66%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/common.cc.o
[ 67%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/extension_set.cc.o
[ 68%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/generated_message_table_driven_lite.cc.o
[ 69%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/generated_message_util.cc.o
[ 70%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/implicit_weak_message.cc.o
[ 71%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/int128.cc.o
[ 72%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/io_win32.cc.o
[ 73%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/message_lite.cc.o
[ 74%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/repeated_field.cc.o
[ 75%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/status.cc.o
[ 76%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/statusor.cc.o
[ 76%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/stringpiece.cc.o
[ 77%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/stringprintf.cc.o
[ 78%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/structurally_valid.cc.o
[ 79%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/strutil.cc.o
[ 80%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/time.cc.o
[ 81%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/wire_format_lite.cc.o
[ 82%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/zero_copy_stream.cc.o
[ 83%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/protobuf-lite/zero_copy_stream_impl_lite.cc.o
[ 84%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece.pb.cc.o
[ 85%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/builtin_pb/sentencepiece_model.pb.cc.o
[ 86%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/bpe_model.cc.o
[ 87%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/char_model.cc.o
[ 88%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/error.cc.o
[ 88%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/filesystem.cc.o
[ 89%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/flags.cc.o
[ 90%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/model_factory.cc.o
[ 91%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/model_interface.cc.o
[ 92%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/normalizer.cc.o
[ 93%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/sentencepiece_processor.cc.o
[ 94%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/unigram_model.cc.o
[ 95%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/util.cc.o
[ 96%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/word_model.cc.o
[ 97%] Building CXX object src/CMakeFiles/sentencepiece-static.dir/__/third_party/absl/strings/string_view.cc.o
[ 98%] Linking CXX static library libsentencepiece.a
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[ 98%] Built target sentencepiece-static
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
Scanning dependencies of target spm_export_vocab
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[3]: Entering directory '/content/espnet/tools/sentencepiece/build'
[ 99%] Building CXX object src/CMakeFiles/spm_export_vocab.dir/spm_export_vocab_main.cc.o
[100%] Linking CXX executable spm_export_vocab
make[3]: Leaving directory '/content/espnet/tools/sentencepiece/build'
[100%] Built target spm_export_vocab
make[2]: Leaving directory '/content/espnet/tools/sentencepiece/build'
make[1]: Leaving directory '/content/espnet/tools/sentencepiece/build'
touch sentencepiece.done

Recognize speech using pretrained models

Let’s recognize 7-minutes long audio speech as an example. Go to a recipe directory and run recog_wav.sh at the directory.

Available models are summarized here.

[ ]:
!cd espnet/egs/tedlium2/asr1; bash ../../../utils/recog_wav.sh --models tedlium2.tacotron2.v1
stage 0: Data preparation
stage 1: Feature Generation
steps/make_fbank_pitch.sh --cmd run.pl --nj 1 --write_utt2num_frames true decode/TomWujec_2010U/data decode/TomWujec_2010U/log decode/TomWujec_2010U/fbank
steps/make_fbank_pitch.sh: moving decode/TomWujec_2010U/data/feats.scp to decode/TomWujec_2010U/data/.backup
utils/validate_data_dir.sh: WARNING: you have only one speaker.  This probably a bad idea.
   Search for the word 'bold' in http://kaldi-asr.org/doc/data_prep.html
   for more information.
utils/validate_data_dir.sh: Successfully validated data-directory decode/TomWujec_2010U/data
steps/make_fbank_pitch.sh: [info]: no segments file exists: assuming wav.scp indexed by utterance.
steps/make_fbank_pitch.sh: Succeeded creating filterbank and pitch features for data
/content/espnet/egs/tedlium2/asr1/../../../utils/dump.sh --cmd run.pl --nj 1 --do_delta false decode/TomWujec_2010U/data/feats.scp decode/download/tedlium2.tacotron2.v1/data/train_trim_sp/cmvn.ark decode/TomWujec_2010U/log decode/TomWujec_2010U/dump
stage 2: Json Data Preparation
/content/espnet/egs/tedlium2/asr1/../../../utils/data2json.sh --feat decode/TomWujec_2010U/dump/feats.scp decode/TomWujec_2010U/data decode/TomWujec_2010U/dict
/content/espnet/egs/tedlium2/asr1/../../../utils/feat_to_shape.sh --cmd run.pl --nj 1 --filetype  --preprocess-conf  --verbose 0 decode/TomWujec_2010U/dump/feats.scp decode/TomWujec_2010U/data/tmp-j7OeZ/input/shape.scp
sym2int.pl: replacing X with 1
** Replaced 1 instances of OOVs with 1
stage 3: Decoding
^C

You can see the progress of the recognition.

[ ]:
!cat espnet/egs/tedlium2/asr1/decode/TomWujec_2010U/log/decode.log
# asr_recog.py --config decode/download/tedlium2.tacotron2.v1/conf/decode_streaming.yaml --ngpu 0 --backend pytorch --debugmode 1 --verbose 1 --recog-json decode/TomWujec_2010U/dump/data.json --result-label decode/TomWujec_2010U/result.json --model decode/download/tedlium2.tacotron2.v1/exp/train_trim_sp_pytorch_train4/results/model.acc.best --rnnlm decode/download/tedlium2.tacotron2.v1/exp/train_rnnlm_pytorch_lm_unigram500/rnnlm.model.best
# Started at Mon Jul 29 04:10:09 UTC 2019
#
2019-07-29 04:10:10,182 (asr_recog:134) INFO: python path = /env/python
2019-07-29 04:10:10,183 (asr_recog:139) INFO: set random seed = 1
2019-07-29 04:10:10,183 (asr_recog:147) INFO: backend = pytorch
/usr/local/lib/python3.6/dist-packages/sklearn/externals/joblib/externals/cloudpickle/cloudpickle.py:47: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
  import imp
2019-07-29 04:10:12,364 (deterministic_utils:24) INFO: torch type check is disabled
2019-07-29 04:10:12,364 (asr_utils:310) INFO: reading a config file from decode/download/tedlium2.tacotron2.v1/exp/train_trim_sp_pytorch_train4/results/model.json
2019-07-29 04:10:12,364 (asr:482) INFO: reading model parameters from decode/download/tedlium2.tacotron2.v1/exp/train_trim_sp_pytorch_train4/results/model.acc.best
2019-07-29 04:10:12,365 (e2e_asr:86) INFO: subsample: 1 2 2 1 1
2019-07-29 04:10:12,690 (encoders:236) INFO: LSTM with every-layer projection for encoder
2019-07-29 04:10:13,559 (asr_utils:310) INFO: reading a config file from decode/download/tedlium2.tacotron2.v1/exp/train_rnnlm_pytorch_lm_unigram500/model.json
2019-07-29 04:10:13,727 (asr:545) INFO: (1/1) decoding TomWujec_2010U
2019-07-29 04:10:13,849 (asr:559) INFO: Using streaming recognizer with threshold value 12
2019-07-29 04:10:29,906 (decoders:234) INFO: input lengths: 139
2019-07-29 04:10:29,907 (decoders:260) INFO: max output length: 125
2019-07-29 04:10:29,907 (decoders:261) INFO: min output length: 13
2019-07-29 04:11:04,604 (decoders:351) INFO: adding <eos> in the last position in the loop
2019-07-29 04:11:04,608 (decoders:380) INFO: no hypothesis. Finish decoding.
2019-07-29 04:11:04,624 (decoders:400) INFO: total log probability: tensor(-130.5115)
2019-07-29 04:11:04,624 (decoders:401) INFO: normalized log probability: tensor(-2.8372)
2019-07-29 04:11:04,633 (asr:573) INFO: years ago here at ted peter skill men introduced a design challenge called the marshmallow challenge
2019-07-29 04:11:05,883 (decoders:234) INFO: input lengths: 38
2019-07-29 04:11:05,884 (decoders:260) INFO: max output length: 34
2019-07-29 04:11:05,884 (decoders:261) INFO: min output length: 3
2019-07-29 04:11:13,157 (decoders:351) INFO: adding <eos> in the last position in the loop
2019-07-29 04:11:13,160 (decoders:380) INFO: no hypothesis. Finish decoding.
2019-07-29 04:11:13,162 (decoders:400) INFO: total log probability: tensor(-31.0363)
2019-07-29 04:11:13,162 (decoders:401) INFO: normalized log probability: tensor(-3.8795)
2019-07-29 04:11:13,165 (asr:573) INFO: and the idea is pretty simple
2019-07-29 04:11:17,072 (decoders:234) INFO: input lengths: 129
2019-07-29 04:11:17,072 (decoders:260) INFO: max output length: 116
2019-07-29 04:11:17,072 (decoders:261) INFO: min output length: 12
2019-07-29 04:11:47,356 (decoders:351) INFO: adding <eos> in the last position in the loop
2019-07-29 04:11:47,363 (decoders:380) INFO: no hypothesis. Finish decoding.
2019-07-29 04:11:47,369 (decoders:400) INFO: total log probability: tensor(-121.8175)
2019-07-29 04:11:47,370 (decoders:401) INFO: normalized log probability: tensor(-3.2057)
2019-07-29 04:11:47,380 (asr:573) INFO: teams of four have to build a tallest free standing structure out of twenty six to spaghetti
2019-07-29 04:11:48,603 (decoders:234) INFO: input lengths: 33
2019-07-29 04:11:48,603 (decoders:260) INFO: max output length: 29
2019-07-29 04:11:48,603 (decoders:261) INFO: min output length: 3
2019-07-29 04:11:55,044 (decoders:351) INFO: adding <eos> in the last position in the loop
2019-07-29 04:11:55,047 (decoders:380) INFO: no hypothesis. Finish decoding.
2019-07-29 04:11:55,050 (decoders:400) INFO: total log probability: tensor(-35.5908)
2019-07-29 04:11:55,050 (decoders:401) INFO: normalized log probability: tensor(-3.2355)
2019-07-29 04:11:55,052 (asr:573) INFO: one yard of tape
2019-07-29 04:11:58,257 (decoders:234) INFO: input lengths: 105
2019-07-29 04:11:58,257 (decoders:260) INFO: max output length: 94
2019-07-29 04:11:58,257 (decoders:261) INFO: min output length: 10
Traceback (most recent call last):
  File "/content/espnet/egs/tedlium2/asr1/../../../espnet/bin/asr_recog.py", line 166, in <module>
    main(sys.argv[1:])
  File "/content/espnet/egs/tedlium2/asr1/../../../espnet/bin/asr_recog.py", line 154, in main
    recog(args)
  File "/content/espnet/espnet/asr/pytorch_backend/asr.py", line 566, in recog
    hyps = se2e.accept_input(feat[i:i + r])
  File "/content/espnet/espnet/nets/pytorch_backend/streaming/segment.py", line 83, in accept_input
    h, lpz, self._recog_args, self._char_list, self._rnnlm)
  File "/content/espnet/espnet/nets/pytorch_backend/rnn/decoders.py", line 302, in recognize_beam
    rnnlm_state, local_lm_scores = rnnlm.predict(hyp['rnnlm_prev'], vy)
  File "/content/espnet/espnet/lm/pytorch_backend/lm.py", line 131, in predict
    state, z = self.predictor(state, x)
  File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 493, in __call__
    result = self.forward(*input, **kwargs)
  File "/content/espnet/espnet/lm/pytorch_backend/lm.py", line 203, in forward
    h[0], c[0] = self.rnn[0](self.dropout[0](emb), (state['h'][0], state['c'][0]))
  File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 493, in __call__
    result = self.forward(*input, **kwargs)
  File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/rnn.py", line 890, in forward
    self.bias_ih, self.bias_hh,
KeyboardInterrupt

You can change E2E model, language model, decoding parameters, etc. For the detail, see recog_wav.sh.

[ ]:
!cat espnet/utils/recog_wav.sh
#!/bin/bash

# Copyright 2019 Nagoya University (Takenori Yoshimura)
#  Apache 2.0  (http://www.apache.org/licenses/LICENSE-2.0)

if [ ! -f path.sh ] || [ ! -f cmd.sh ]; then
    echo "Please change directory to e.g., egs/tedlium2/asr1"
    exit 1
fi

. ./path.sh

# general configuration
backend=pytorch
stage=0        # start from 0 if you need to start from data preparation
stop_stage=100
ngpu=0         # number of gpus ("0" uses cpu, otherwise use gpu)
debugmode=1
verbose=1      # verbose option

# feature configuration
do_delta=false
cmvn=

# rnnlm related
use_lang_model=true
lang_model=

# decoding parameter
recog_model=
decode_config=
decode_dir=decode

# download related
models=tedlium2.tacotron2.v1

help_message=$(cat <<EOF
Usage:
    $0 <wav>

Example:
    rec -c 1 -r 16000 example.wav trim 0 5
    $0 example.wav
EOF
)
. utils/parse_options.sh || exit 1;

# make shellcheck happy
train_cmd=
decode_cmd=

. ./cmd.sh

wav=$1
download_dir=${decode_dir}/download

if [ $# -gt 1 ]; then
    echo $help_message
    exit 1;
fi

set -e
set -u
set -o pipefail

function download_models () {
    case "${models}" in
        "tedlium2.tacotron2.v1") share_url="https://drive.google.com/open?id=1UqIY6WJMZ4sxNxSugUqp3mrGb3j6h7xe" ;;
        *) echo "No such models: ${models}"; exit 1 ;;
    esac

    dir=${download_dir}/${models}
    mkdir -p ${dir}
    if [ ! -e ${dir}/.complete ]; then
        download_from_google_drive.sh ${share_url} ${dir} ".tar.gz"
        touch ${dir}/.complete
    fi
}

# Download trained models
if [ -z "${cmvn}" ]; then
    download_models
    cmvn=$(find ${download_dir}/${models} -name "cmvn.ark" | head -n 1)
fi
if [ -z "${lang_model}" ] && ${use_lang_model}; then
    download_models
    lang_model=$(find ${download_dir}/${models} -name "rnnlm*.best" | head -n 1)
fi
if [ -z "${recog_model}" ]; then
    download_models
    recog_model=$(find ${download_dir}/${models} -name "model*.best" | head -n 1)
fi
if [ -z "${decode_config}" ]; then
    download_models
    decode_config=$(find ${download_dir}/${models} -name "decode*.yaml" | head -n 1)
fi
if [ -z "${wav}" ]; then
    download_models
    wav=$(find ${download_dir}/${models} -name "*.wav" | head -n 1)
fi

# Check file existence
if [ ! -f "${cmvn}" ]; then
    echo "No such CMVN file: ${cmvn}"
    exit 1
fi
if [ ! -f "${lang_model}" ] && ${use_lang_model}; then
    echo "No such language model: ${lang_model}"
    exit 1
fi
if [ ! -f "${recog_model}" ]; then
    echo "No such E2E model: ${recog_model}"
    exit 1
fi
if [ ! -f "${decode_config}" ]; then
    echo "No such config file: ${decode_config}"
    exit 1
fi
if [ ! -f "${wav}" ]; then
    echo "No such WAV file: ${wav}"
    exit 1
fi

base=$(basename $wav .wav)
decode_dir=${decode_dir}/${base}

if [ ${stage} -le 0 ] && [ ${stop_stage} -ge 0 ]; then
    echo "stage 0: Data preparation"

    mkdir -p ${decode_dir}/data
    echo "$base $wav" > ${decode_dir}/data/wav.scp
    echo "X $base" > ${decode_dir}/data/spk2utt
    echo "$base X" > ${decode_dir}/data/utt2spk
    echo "$base X" > ${decode_dir}/data/text
fi

if [ ${stage} -le 1 ] && [ ${stop_stage} -ge 1 ]; then
    echo "stage 1: Feature Generation"

    steps/make_fbank_pitch.sh --cmd "$train_cmd" --nj 1 --write_utt2num_frames true \
        ${decode_dir}/data ${decode_dir}/log ${decode_dir}/fbank

    feat_recog_dir=${decode_dir}/dump; mkdir -p ${feat_recog_dir}
    dump.sh --cmd "$train_cmd" --nj 1 --do_delta ${do_delta} \
        ${decode_dir}/data/feats.scp ${cmvn} ${decode_dir}/log \
        ${feat_recog_dir}
fi

if [ ${stage} -le 2 ] && [ ${stop_stage} -ge 2 ]; then
    echo "stage 2: Json Data Preparation"

    dict=${decode_dir}/dict
    echo "<unk> 1" > ${dict}
    feat_recog_dir=${decode_dir}/dump
    data2json.sh --feat ${feat_recog_dir}/feats.scp \
        ${decode_dir}/data ${dict} > ${feat_recog_dir}/data.json
    rm -f ${dict}
fi

if [ ${stage} -le 3 ] && [ ${stop_stage} -ge 3 ]; then
    echo "stage 3: Decoding"

    if ${use_lang_model}; then
        recog_opts="--rnnlm ${lang_model}"
    else
        recog_opts=""
    fi
    feat_recog_dir=${decode_dir}/dump

    ${decode_cmd} ${decode_dir}/log/decode.log \
        asr_recog.py \
        --config ${decode_config} \
        --ngpu ${ngpu} \
        --backend ${backend} \
        --debugmode ${debugmode} \
        --verbose ${verbose} \
        --recog-json ${feat_recog_dir}/data.json \
        --result-label ${decode_dir}/result.json \
        --model ${recog_model} \
        ${recog_opts}

    echo ""
    recog_text=$(grep rec_text ${decode_dir}/result.json | sed -e 's/.*: "\(.*\)<eos>.*/\1/')
    echo "Recognized text: ${recog_text}"
    echo ""
    echo "Finished"
fi

Synthesize speech using pretrained models

Let’s synthesize speech using an E2E model. Go to a recipe directory and run synth_wav.sh at the directory.

Available models are summarized here.

[ ]:
!cd espnet/egs/ljspeech/tts1; \
echo "THIS IS A DEMONSTRATION OF TEXT TO SPEECH." > example.txt; \
bash ../../../utils/synth_wav.sh --models ljspeech.tacotron2.v1 example.txt
--2019-07-29 04:12:48--  https://drive.google.com/uc?export=download&id=1dKzdaDpOkpx7kWZnvrvx2De7eZEdPHZs
Resolving drive.google.com (drive.google.com)... 74.125.20.138, 74.125.20.102, 74.125.20.101, ...
Connecting to drive.google.com (drive.google.com)|74.125.20.138|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://doc-04-30-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/s5uj0qai6u6ooagkqh3ku4vpis2lstie/1564372800000/04214513489132088126/*/1dKzdaDpOkpx7kWZnvrvx2De7eZEdPHZs?e=download [following]
Warning: wildcards not supported in HTTP.
--2019-07-29 04:12:56--  https://doc-04-30-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/s5uj0qai6u6ooagkqh3ku4vpis2lstie/1564372800000/04214513489132088126/*/1dKzdaDpOkpx7kWZnvrvx2De7eZEdPHZs?e=download
Resolving doc-04-30-docs.googleusercontent.com (doc-04-30-docs.googleusercontent.com)... 74.125.28.132, 2607:f8b0:400e:c04::84
Connecting to doc-04-30-docs.googleusercontent.com (doc-04-30-docs.googleusercontent.com)|74.125.28.132|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/x-gzip]
Saving to: 'decode/download/ljspeech.tacotron2.v1/2wfcwa..tar.gz'

decode/download/ljs     [    <=>             ]  92.84M  83.4MB/s    in 1.1s

2019-07-29 04:12:58 (83.4 MB/s) - 'decode/download/ljspeech.tacotron2.v1/2wfcwa..tar.gz' saved [97349800]

conf/tuning/train_pytorch_tacotron2.v1.yaml
conf/decode.yaml
data/train_no_dev/cmvn.ark
exp/train_no_dev_pytorch_train_pytorch_tacotron2.v1/results/model.last1.avg.best
exp/train_no_dev_pytorch_train_pytorch_tacotron2.v1/results/model.json
data/lang_1char/train_no_dev_units.txt
Sucessfully downloaded zip file from https://drive.google.com/open?id=1dKzdaDpOkpx7kWZnvrvx2De7eZEdPHZs
stage 0: Data preparation
/content/espnet/egs/ljspeech/tts1/../../../utils/data2json.sh decode/example/data decode/download/ljspeech.tacotron2.v1/data/lang_1char/train_no_dev_units.txt
stage 2: Decoding
stage 3: Synthesis
apply-cmvn --norm-vars=true --reverse=true decode/download/ljspeech.tacotron2.v1/data/train_no_dev/cmvn.ark scp:decode/example/outputs/feats.scp ark,scp:decode/example/outputs_denorm/feats.ark,decode/example/outputs_denorm/feats.scp
LOG (apply-cmvn[5.5.428~1-29b3]:main():apply-cmvn.cc:159) Applied cepstral mean and variance normalization to 1 utterances, errors on 0
/content/espnet/egs/ljspeech/tts1/../../../utils/convert_fbank.sh --nj 1 --cmd run.pl --fs 22050 --fmax  --fmin  --n_fft 1024 --n_shift 256 --win_length  --n_mels 80 --iters 1000 decode/example/outputs_denorm decode/example/log decode/example/wav
Succeeded creating wav for outputs_denorm

Synthesized wav: decode/example/wav/example.wav

Finished

Let’s listen the synthesized speech!

[ ]:
from google.colab import files

files.download('espnet/egs/ljspeech/tts1/decode/example/wav/example.wav')

You can change E2E model, decoding parameters, etc. For the detail, see synth_wav.sh.

[ ]:
!cat espnet/utils/synth_wav.sh
#!/bin/bash

# Copyright 2019 Nagoya University (Takenori Yoshimura)
#  Apache 2.0  (http://www.apache.org/licenses/LICENSE-2.0)

if [ ! -f path.sh ] || [ ! -f cmd.sh ]; then
    echo "Please change directory to e.g., egs/ljspeech/tts1"
    exit 1
fi

. ./path.sh

# general configuration
backend=pytorch
stage=0        # start from 0 if you need to start from data preparation
stop_stage=100
ngpu=0         # number of gpus ("0" uses cpu, otherwise use gpu)
debugmode=1
verbose=1      # verbose option

# feature configuration
fs=22050      # sampling frequency
fmax=""       # maximum frequency
fmin=""       # minimum frequency
n_mels=80     # number of mel basis
n_fft=1024    # number of fft points
n_shift=256   # number of shift points
win_length="" # window length
cmvn=

# dictionary related
dict=

# embedding related
input_wav=

# decoding related
synth_model=
decode_config=
decode_dir=decode
griffin_lim_iters=1000

# download related
models=ljspeech.transformer.v1

help_message=$(cat <<EOF
Usage:
    $0 <text>

Example:
    echo \"This is a demonstration of text to speech.\" > example.txt
    $0 example.txt
EOF
)
. utils/parse_options.sh || exit 1;

# make shellcheck happy
train_cmd=
decode_cmd=

. ./cmd.sh

txt=$1
download_dir=${decode_dir}/download

if [ $# -ne 1 ]; then
    echo $help_message
    exit 1;
fi

set -e
set -u
set -o pipefail

function download_models () {
    case "${models}" in
        "libritts.tacotron2.v1") share_url="https://drive.google.com/open?id=1iAXwC0AuWusa9AcFeUVkcNLG0I-hnSr3" ;;
        "ljspeech.tacotron2.v1") share_url="https://drive.google.com/open?id=1dKzdaDpOkpx7kWZnvrvx2De7eZEdPHZs" ;;
        "ljspeech.tacotron2.v2") share_url="https://drive.google.com/open?id=11T9qw8rJlYzUdXvFjkjQjYrp3iGfQ15h" ;;
        "ljspeech.tacotron2.v3") share_url="https://drive.google.com/open?id=1hiZn14ITUDM1nkn-GkaN_M3oaTOUcn1n" ;;
        "ljspeech.transformer.v1") share_url="https://drive.google.com/open?id=13DR-RB5wrbMqBGx_MC655VZlsEq52DyS" ;;
        "ljspeech.transformer.v2") share_url="https://drive.google.com/open?id=1xxAwPuUph23RnlC5gym7qDM02ZCW9Unp" ;;
        *) echo "No such models: ${models}"; exit 1 ;;
    esac

    dir=${download_dir}/${models}
    mkdir -p ${dir}
    if [ ! -e ${dir}/.complete ]; then
        download_from_google_drive.sh ${share_url} ${dir} ".tar.gz"
        touch ${dir}/.complete
    fi
}

# Download trained models
if [ -z "${cmvn}" ]; then
    download_models
    cmvn=$(find ${download_dir}/${models} -name "cmvn.ark" | head -n 1)
fi
if [ -z "${dict}" ]; then
    download_models
    dict=$(find ${download_dir}/${models} -name "*_units.txt" | head -n 1)
fi
if [ -z "${synth_model}" ]; then
    download_models
    synth_model=$(find ${download_dir}/${models} -name "model*.best" | head -n 1)
fi
if [ -z "${decode_config}" ]; then
    download_models
    decode_config=$(find ${download_dir}/${models} -name "decode*.yaml" | head -n 1)
fi

synth_json=$(basename ${synth_model})
model_json="$(dirname ${synth_model})/${synth_json%%.*}.json"
use_speaker_embedding=$(grep use_speaker_embedding ${model_json} | sed -e "s/.*: *\([0-9]*\).*/\1/")
if [ ${use_speaker_embedding} -eq 1 ]; then
    use_input_wav=true
else
    use_input_wav=false
fi
if [ -z "${input_wav}" ] && ${use_input_wav}; then
    download_models
    input_wav=$(find ${download_dir}/${models} -name "*.wav" | head -n 1)
fi

# Check file existence
if [ ! -f "${cmvn}" ]; then
    echo "No such CMVN file: ${cmvn}"
    exit 1
fi
if [ ! -f "${dict}" ]; then
    echo "No such dictionary: ${dict}"
    exit 1
fi
if [ ! -f "${synth_model}" ]; then
    echo "No such E2E model: ${synth_model}"
    exit 1
fi
if [ ! -f "${decode_config}" ]; then
    echo "No such config file: ${decode_config}"
    exit 1
fi
if [ ! -f "${input_wav}" ] && ${use_input_wav}; then
    echo "No such WAV file for extracting meta information: ${input_wav}"
    exit 1
fi
if [ ! -f "${txt}" ]; then
    echo "No such txt file: ${txt}"
    exit 1
fi

base=$(basename $txt .txt)
decode_dir=${decode_dir}/${base}

if [ ${stage} -le 0 ] && [ ${stop_stage} -ge 0 ]; then
    echo "stage 0: Data preparation"

    mkdir -p ${decode_dir}/data
    echo "$base X" > ${decode_dir}/data/wav.scp
    echo "X $base" > ${decode_dir}/data/spk2utt
    echo "$base X" > ${decode_dir}/data/utt2spk
    echo -n "$base " > ${decode_dir}/data/text
    cat $txt >> ${decode_dir}/data/text

    mkdir -p ${decode_dir}/dump
    data2json.sh ${decode_dir}/data ${dict} > ${decode_dir}/dump/data.json
fi

if [ ${stage} -le 1 ] && [ ${stop_stage} -ge 1 ] && ${use_input_wav}; then
    echo "stage 1: x-vector extraction"

    utils/copy_data_dir.sh ${decode_dir}/data ${decode_dir}/data2
    echo "$base ${input_wav}" > ${decode_dir}/data2/wav.scp
    utils/data/resample_data_dir.sh 16000 ${decode_dir}/data2
    steps/make_mfcc.sh \
        --write-utt2num-frames true \
        --mfcc-config conf/mfcc.conf \
        --nj 1 --cmd "$train_cmd" \
        ${decode_dir}/data2 ${decode_dir}/log ${decode_dir}/mfcc
    utils/fix_data_dir.sh ${decode_dir}/data2
    sid/compute_vad_decision.sh --nj 1 --cmd "$train_cmd" \
        ${decode_dir}/data2 ${decode_dir}/log ${decode_dir}/mfcc
    utils/fix_data_dir.sh ${decode_dir}/data2

    nnet_dir=${download_dir}/xvector_nnet_1a
    if [ ! -e ${nnet_dir} ]; then
        echo "X-vector model does not exist. Download pre-trained model."
        wget http://kaldi-asr.org/models/8/0008_sitw_v2_1a.tar.gz
        tar xvf 0008_sitw_v2_1a.tar.gz
        mv 0008_sitw_v2_1a/exp/xvector_nnet_1a ${download_dir}
        rm -rf 0008_sitw_v2_1a.tar.gz 0008_sitw_v2_1a
    fi
    sid/nnet3/xvector/extract_xvectors.sh --cmd "$train_cmd --mem 4G" --nj 1 \
        ${nnet_dir} ${decode_dir}/data2 \
        ${decode_dir}/xvectors

    local/update_json.sh ${decode_dir}/dump/data.json ${decode_dir}/xvectors/xvector.scp
fi

if [ ${stage} -le 2 ] && [ ${stop_stage} -ge 2 ]; then
    echo "stage 2: Decoding"

    ${decode_cmd} ${decode_dir}/log/decode.log \
        tts_decode.py \
        --config ${decode_config} \
        --ngpu ${ngpu} \
        --backend ${backend} \
        --debugmode ${debugmode} \
        --verbose ${verbose} \
        --out ${decode_dir}/outputs/feats \
        --json ${decode_dir}/dump/data.json \
        --model ${synth_model}
fi

if [ ${stage} -le 3 ] && [ ${stop_stage} -ge 3 ]; then
    echo "stage 3: Synthesis"

    outdir=${decode_dir}/outputs; mkdir -p ${outdir}_denorm
    apply-cmvn --norm-vars=true --reverse=true ${cmvn} \
        scp:${outdir}/feats.scp \
        ark,scp:${outdir}_denorm/feats.ark,${outdir}_denorm/feats.scp

    convert_fbank.sh --nj 1 --cmd "${decode_cmd}" \
        --fs ${fs} \
        --fmax "${fmax}" \
        --fmin "${fmin}" \
        --n_fft ${n_fft} \
        --n_shift ${n_shift} \
        --win_length "${win_length}" \
        --n_mels ${n_mels} \
        --iters ${griffin_lim_iters} \
        ${outdir}_denorm \
        ${decode_dir}/log \
        ${decode_dir}/wav

    echo ""
    echo "Synthesized wav: ${decode_dir}/wav/${base}.wav"
    echo ""
    echo "Finished"
fi

We have a web storage to put your good trained models. If you want, please contact Shinji Watanabe shinjiw@ieee.org.