zoukankan      html  css  js  c++  java
  • AlphaPose ubuntu16 python2安装

    #https://www.tensorflow.org/install/install_linux#ValidateYourInstallation

    #https://github.com/MVIG-SJTU/AlphaPose

    #https://github.com/torch/distro

    gbt@gbt-Precision-7720:~$
    gbt@gbt-Precision-7720:~$ cd MVIG-SJTU
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ ls
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ git clone https://github.com/MVIG-SJTU/AlphaPose.git
    正克隆到 'AlphaPose'...
    remote: Counting objects: 1921, done.
    remote: Compressing objects: 100% (152/152), done.
    remote: Total 1921 (delta 120), reused 106 (delta 47), pack-reused 1722
    接收对象中: 100% (1921/1921), 98.47 MiB | 870.00 KiB/s, 完成.
    处理 delta 中: 100% (693/693), 完成.
    检查连接... 完成。
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ ls
    AlphaPose
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ cd AlphaPose
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ls
    doc       fetch_models.sh  install.sh  PoseFlow  README.md  train
    examples  human-detection  LICENSE     predict   run.sh
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ cd human-detection
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection$ ls
    docker  experiments  lib  LICENSE  README.md  requirements.txt  tools
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection$ cd lib
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$ ls
    datasets     Makefile  nets    nms             setup.py
    layer_utils  model     newnms  roi_data_layer  utils
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$ make clean
    rm -rf */*.pyc
    rm -rf */*.so
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$ make
    python2 setup.py build_ext --inplace
    running build_ext
    cythoning utils/bbox.pyx to utils/bbox.c
    building 'utils.cython_bbox' extension
    creating build
    creating build/temp.linux-x86_64-2.7
    creating build/temp.linux-x86_64-2.7/utils
    {'gcc': ['-Wno-cpp', '-Wno-unused-function']}
    x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/home/gbt/.local/lib/python2.7/site-packages/numpy/core/include -I/usr/include/python2.7 -c utils/bbox.c -o build/temp.linux-x86_64-2.7/utils/bbox.o -Wno-cpp -Wno-unused-function
    x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wl,-Bsymbolic-functions -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security build/temp.linux-x86_64-2.7/utils/bbox.o -o /home/gbt/MVIG-SJTU/AlphaPose/human-detection/lib/utils/cython_bbox.so
    cythoning utils/nms.pyx to utils/nms.c
    building 'utils.cython_nms' extension
    {'gcc': ['-Wno-cpp', '-Wno-unused-function']}
    x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/home/gbt/.local/lib/python2.7/site-packages/numpy/core/include -I/usr/include/python2.7 -c utils/nms.c -o build/temp.linux-x86_64-2.7/utils/nms.o -Wno-cpp -Wno-unused-function
    x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wl,-Bsymbolic-functions -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security build/temp.linux-x86_64-2.7/utils/nms.o -o /home/gbt/MVIG-SJTU/AlphaPose/human-detection/lib/utils/cython_nms.so
    rm -rf build
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$ ls
    datasets     Makefile  nets    nms             setup.py
    layer_utils  model     newnms  roi_data_layer  utils
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib$ cd newnms
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib/newnms$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib/newnms$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib/newnms$ ls
    cpu_nms.c     gpu_nms.cpp  __init__.py    nms.py
    cpu_nms.pyx   gpu_nms.cu   Makefile       setup_linux.py
    cpu_nms.pyx~  gpu_nms.hpp  nms.egg-info   setup_windows_cuda.py
    dist          gpu_nms.pyx  nms_kernel.cu  setup_windows.py
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib/newnms$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib/newnms$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib/newnms$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib/newnms$ make
    python2 setup_linux.py build_ext --inplace
    running build_ext
    skipping 'cpu_nms.c' Cython extension (up-to-date)
    building 'cpu_nms' extension
    creating build
    creating build/temp.linux-x86_64-2.7
    x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/home/gbt/.local/lib/python2.7/site-packages/numpy/core/include -I/usr/include/python2.7 -c cpu_nms.c -o build/temp.linux-x86_64-2.7/cpu_nms.o -Wno-cpp -Wno-unused-function
    x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wl,-Bsymbolic-functions -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security build/temp.linux-x86_64-2.7/cpu_nms.o -o /home/gbt/MVIG-SJTU/AlphaPose/human-detection/lib/newnms/cpu_nms.so
    skipping 'gpu_nms.cpp' Cython extension (up-to-date)
    building 'gpu_nms' extension
    /usr/local/cuda/bin/nvcc -I/home/gbt/.local/lib/python2.7/site-packages/numpy/core/include -I/usr/local/cuda/include -I/usr/include/python2.7 -c nms_kernel.cu -o build/temp.linux-x86_64-2.7/nms_kernel.o -arch=sm_35 --ptxas-options=-v -c --compiler-options '-fPIC'
    ptxas info    : 0 bytes gmem
    ptxas info    : Compiling entry function '_Z10nms_kernelifPKfPy' for 'sm_35'
    ptxas info    : Function properties for _Z10nms_kernelifPKfPy
        0 bytes stack frame, 0 bytes spill stores, 0 bytes spill loads
    ptxas info    : Used 25 registers, 1280 bytes smem, 344 bytes cmem[0], 8 bytes cmem[2]
    x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/home/gbt/.local/lib/python2.7/site-packages/numpy/core/include -I/usr/local/cuda/include -I/usr/include/python2.7 -c gpu_nms.cpp -o build/temp.linux-x86_64-2.7/gpu_nms.o -Wno-unused-function
    cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++
    In file included from /home/gbt/.local/lib/python2.7/site-packages/numpy/core/include/numpy/ndarraytypes.h:1816:0,
                     from /home/gbt/.local/lib/python2.7/site-packages/numpy/core/include/numpy/ndarrayobject.h:18,
                     from /home/gbt/.local/lib/python2.7/site-packages/numpy/core/include/numpy/arrayobject.h:4,
                     from gpu_nms.cpp:449:
    /home/gbt/.local/lib/python2.7/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h:15:2: warning: #warning "Using deprecated NumPy API, disable it by " "#defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" [-Wcpp]
     #warning "Using deprecated NumPy API, disable it by "
      ^
    c++ -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wl,-Bsymbolic-functions -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security build/temp.linux-x86_64-2.7/nms_kernel.o build/temp.linux-x86_64-2.7/gpu_nms.o -L/usr/local/cuda/lib64 -Wl,-R/usr/local/cuda/lib64 -lcudart -o /home/gbt/MVIG-SJTU/AlphaPose/human-detection/lib/newnms/gpu_nms.so
    rm -rf build
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose/human-detection/lib/newnms$ cd ../../../
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ls
    doc       fetch_models.sh  install.sh  PoseFlow  README.md  train
    examples  human-detection  LICENSE     predict   run.sh
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ cd ../
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ ls
    AlphaPose
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ cd ../
    gbt@gbt-Precision-7720:~$
    gbt@gbt-Precision-7720:~$
    gbt@gbt-Precision-7720:~$ ls
    =1.13                                     4.15.0-24-generic-hid-sensor-gyro-3d.ko  DETECTRON         模板
    =3.12                                     4.15.0-24-generic-uvcvideo.ko            examples.desktop  视频
    =3.2                                      4.15.0-24-generic-videodev.ko            mask_rcnn_img     图片
    4.13.0-45-generic-hid-sensor-accel-3d.ko  =5.2                                     MVIG-SJTU         文档
    4.13.0-45-generic-hid-sensor-gyro-3d.ko   Anaconda                                 opencv            下载
    4.13.0-45-generic-uvcvideo.ko             anaconda3                                opencv-3.4.1      音乐
    4.13.0-45-generic-videodev.ko             caffe2                                   RealSennse        桌面
    4.15.0-24-generic-hid-sensor-accel-3d.ko  cocoapi                                  公共的
    gbt@gbt-Precision-7720:~$
    gbt@gbt-Precision-7720:~$
    gbt@gbt-Precision-7720:~$
    gbt@gbt-Precision-7720:~$ cd MVIG-SJTU
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ ls
    AlphaPose
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ git clone https://github.com/torch/distro.git
    正克隆到 'distro'...
    remote: Counting objects: 1601, done.
    remote: Total 1601 (delta 0), reused 0 (delta 0), pack-reused 1601
    接收对象中: 100% (1601/1601), 341.30 KiB | 238.00 KiB/s, 完成.
    处理 delta 中: 100% (927/927), 完成.
    检查连接... 完成。
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ ls
    AlphaPose  distro
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ cd distro
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$ ls
    admin      cmake           extra         install-deps.bat  pkg        test.sh                 update.sh
    clean.bat  CMakeLists.txt  install.bat   install.sh        README.md  travis_cuda_install.sh  win-files
    clean.sh   exe             install-deps  LICENSE.md        test.bat   uninstall.bat
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$ bash install-deps
    [sudo] gbt 的密码:
    对不起,请重试。
    [sudo] gbt 的密码:
    获取:1 file:/var/cuda-repo-8-0-local-cublas-performance-update  InRelease
    忽略:1 file:/var/cuda-repo-8-0-local-cublas-performance-update  InRelease
    获取:2 file:/var/cuda-repo-8-0-local-ga2  InRelease
    忽略:2 file:/var/cuda-repo-8-0-local-ga2  InRelease
    获取:3 file:/var/cuda-repo-8-0-local-cublas-performance-update  Release [574 B]
    获取:3 file:/var/cuda-repo-8-0-local-cublas-performance-update  Release [574 B]
    获取:4 file:/var/cuda-repo-8-0-local-ga2  Release [574 B]
    获取:4 file:/var/cuda-repo-8-0-local-ga2  Release [574 B]
    获取:7 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]                                  
    命中:8 http://cn.archive.ubuntu.com/ubuntu xenial InRelease                                                  
    命中:9 http://linux.teamviewer.com/deb stable InRelease                                                
    命中:10 http://linux.teamviewer.com/deb preview InRelease                                               
    获取:11 http://cn.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]       
    命中:12 https://download.sublimetext.com apt/stable/ InRelease                                  
    获取:13 http://cn.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]                  
    命中:14 https://packages.microsoft.com/repos/vscode stable InRelease                                         
    已下载 323 kB,耗时 11秒 (27.0 kB/s)                                                                         
    正在读取软件包列表... 完成
    Updated successfully.
    正在读取软件包列表... 完成
    正在分析软件包的依赖关系树       
    正在读取状态信息... 完成       
    下列软件包是自动安装的并且现在不需要了:
      libllvm5.0 linux-headers-4.13.0-36 linux-headers-4.13.0-36-generic linux-headers-4.13.0-38
      linux-headers-4.13.0-38-generic linux-headers-4.13.0-45 linux-headers-4.13.0-45-generic
      linux-headers-4.4.0-130 linux-headers-4.4.0-130-generic linux-image-4.13.0-36-generic
      linux-image-4.13.0-37-generic linux-image-4.13.0-38-generic linux-image-4.13.0-45-generic
      linux-image-extra-4.13.0-36-generic linux-image-extra-4.13.0-37-generic
      linux-image-extra-4.13.0-38-generic linux-image-extra-4.13.0-45-generic
      linux-signed-image-4.13.0-37-generic linux-signed-image-4.13.0-38-generic
      linux-signed-image-4.13.0-45-generic
    使用'sudo apt autoremove'来卸载它(它们)。
    将会同时安装下列软件:
      python-apt python-pycurl
    建议安装:
      python-apt-dbg python-apt-doc python-pycurl-dbg python-pycurl-doc
    下列【新】软件包将被安装:
      python-apt python-pycurl python-software-properties
    升级了 0 个软件包,新安装了 3 个软件包,要卸载 0 个软件包,有 0 个软件包未被升级。
    需要下载 203 kB 的归档。
    解压缩后会消耗 936 kB 的额外空间。
    获取:1 http://cn.archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-apt amd64 1.1.0~beta1ubuntu0.16.04.2 [139 kB]
    获取:2 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 python-pycurl amd64 7.43.0-1ubuntu1 [43.3 kB]
    获取:3 http://cn.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 python-software-properties all 0.96.20.7 [20.7 kB]
    已下载 203 kB,耗时 3秒 (52.2 kB/s)                   
    正在选中未选择的软件包 python-apt。
    (正在读取数据库 ... 系统当前共安装有 445544 个文件和目录。)
    正准备解包 .../python-apt_1.1.0~beta1ubuntu0.16.04.2_amd64.deb  ...
    正在解包 python-apt (1.1.0~beta1ubuntu0.16.04.2) ...
    正在选中未选择的软件包 python-pycurl。
    正准备解包 .../python-pycurl_7.43.0-1ubuntu1_amd64.deb  ...
    正在解包 python-pycurl (7.43.0-1ubuntu1) ...
    正在选中未选择的软件包 python-software-properties。
    正准备解包 .../python-software-properties_0.96.20.7_all.deb  ...
    正在解包 python-software-properties (0.96.20.7) ...
    正在设置 python-apt (1.1.0~beta1ubuntu0.16.04.2) ...
    正在设置 python-pycurl (7.43.0-1ubuntu1) ...
    正在设置 python-software-properties (0.96.20.7) ...
    ==> Found Ubuntu version 16.xx
    正在读取软件包列表... 完成
    正在分析软件包的依赖关系树       
    正在读取状态信息... 完成       
    software-properties-common 已经是最新版 (0.96.20.7)。
    下列软件包是自动安装的并且现在不需要了:
      libllvm5.0 linux-headers-4.13.0-36 linux-headers-4.13.0-36-generic linux-headers-4.13.0-38
      linux-headers-4.13.0-38-generic linux-headers-4.13.0-45 linux-headers-4.13.0-45-generic
      linux-headers-4.4.0-130 linux-headers-4.4.0-130-generic linux-image-4.13.0-36-generic
      linux-image-4.13.0-37-generic linux-image-4.13.0-38-generic linux-image-4.13.0-45-generic
      linux-image-extra-4.13.0-36-generic linux-image-extra-4.13.0-37-generic
      linux-image-extra-4.13.0-38-generic linux-image-extra-4.13.0-45-generic
      linux-signed-image-4.13.0-37-generic linux-signed-image-4.13.0-38-generic
      linux-signed-image-4.13.0-45-generic
    使用'sudo apt autoremove'来卸载它(它们)。
    将会同时安装下列软件:
      bzip2-doc libbz2-dev libexif-dev libfftw3-bin libfftw3-long3 libfftw3-quad3 libgraphicsmagick-q16-3
      libid3tag0 liblcms2-dev libsox-fmt-alsa libsox-fmt-ao libsox-fmt-base libsox-fmt-mp3 libsox-fmt-oss
      libsox-fmt-pulse libsox2 libwmf-dev
    建议安装:
      libfftw3-doc graphicsmagick-dbg graphicsmagick libwmf-doc
    下列【新】软件包将被安装:
      bzip2-doc libbz2-dev libexif-dev libfftw3-bin libfftw3-dev libfftw3-long3 libfftw3-quad3
      libgraphicsmagick-q16-3 libgraphicsmagick1-dev libid3tag0 liblcms2-dev libsox-dev libsox-fmt-all
      libsox-fmt-alsa libsox-fmt-ao libsox-fmt-base libsox-fmt-mp3 libsox-fmt-oss libsox-fmt-pulse libsox2
      libwmf-dev sox
    升级了 0 个软件包,新安装了 22 个软件包,要卸载 0 个软件包,有 0 个软件包未被升级。
    需要下载 11.6 MB 的归档。
    解压缩后会消耗 44.4 MB 的额外空间。
    获取:1 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libfftw3-long3 amd64 3.3.4-2ubuntu1 [306 kB]
    获取:2 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libfftw3-quad3 amd64 3.3.4-2ubuntu1 [550 kB]
    获取:3 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox2 amd64 14.4.1-5 [229 kB]
    获取:4 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 bzip2-doc all 1.0.6-8 [295 kB]
    获取:5 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libbz2-dev amd64 1.0.6-8 [29.1 kB]
    获取:6 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libexif-dev amd64 0.6.21-2 [326 kB]
    获取:7 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libfftw3-bin amd64 3.3.4-2ubuntu1 [31.7 kB]
    获取:8 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libfftw3-dev amd64 3.3.4-2ubuntu1 [2,104 kB]
    获取:9 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libgraphicsmagick-q16-3 amd64 1.3.23-1build1 [1,103 kB]
    获取:10 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 liblcms2-dev amd64 2.6-3ubuntu2 [4,657 kB]     
    获取:11 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libwmf-dev amd64 0.2.8.4-10.5ubuntu1 [170 kB]  
    获取:12 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libgraphicsmagick1-dev amd64 1.3.23-1build1 [1,290 kB]
    获取:13 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libid3tag0 amd64 0.15.1b-11 [29.3 kB]      
    获取:14 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox-fmt-alsa amd64 14.4.1-5 [7,280 B]   
    获取:15 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox-fmt-ao amd64 14.4.1-5 [4,160 B]     
    获取:16 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox-fmt-base amd64 14.4.1-5 [29.2 kB]   
    获取:17 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox-fmt-mp3 amd64 14.4.1-5 [12.3 kB]    
    获取:18 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox-fmt-oss amd64 14.4.1-5 [4,694 B]    
    获取:19 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox-fmt-pulse amd64 14.4.1-5 [4,174 B]  
    获取:20 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox-fmt-all amd64 14.4.1-5 [1,758 B]    
    获取:21 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libsox-dev amd64 14.4.1-5 [317 kB]         
    获取:22 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 sox amd64 14.4.1-5 [97.6 kB]               
    已下载 11.6 MB,耗时 16秒 (718 kB/s)                                                                         
    正在选中未选择的软件包 libfftw3-long3:amd64。
    (正在读取数据库 ... 系统当前共安装有 445596 个文件和目录。)
    正准备解包 .../libfftw3-long3_3.3.4-2ubuntu1_amd64.deb  ...
    正在解包 libfftw3-long3:amd64 (3.3.4-2ubuntu1) ...
    正在选中未选择的软件包 libfftw3-quad3:amd64。
    正准备解包 .../libfftw3-quad3_3.3.4-2ubuntu1_amd64.deb  ...
    正在解包 libfftw3-quad3:amd64 (3.3.4-2ubuntu1) ...
    正在选中未选择的软件包 libsox2:amd64。
    正准备解包 .../libsox2_14.4.1-5_amd64.deb  ...
    正在解包 libsox2:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 bzip2-doc。
    正准备解包 .../bzip2-doc_1.0.6-8_all.deb  ...
    正在解包 bzip2-doc (1.0.6-8) ...
    正在选中未选择的软件包 libbz2-dev:amd64。
    正准备解包 .../libbz2-dev_1.0.6-8_amd64.deb  ...
    正在解包 libbz2-dev:amd64 (1.0.6-8) ...
    正在选中未选择的软件包 libexif-dev。
    正准备解包 .../libexif-dev_0.6.21-2_amd64.deb  ...
    正在解包 libexif-dev (0.6.21-2) ...
    正在选中未选择的软件包 libfftw3-bin。
    正准备解包 .../libfftw3-bin_3.3.4-2ubuntu1_amd64.deb  ...
    正在解包 libfftw3-bin (3.3.4-2ubuntu1) ...
    正在选中未选择的软件包 libfftw3-dev:amd64。
    正准备解包 .../libfftw3-dev_3.3.4-2ubuntu1_amd64.deb  ...
    正在解包 libfftw3-dev:amd64 (3.3.4-2ubuntu1) ...
    正在选中未选择的软件包 libgraphicsmagick-q16-3。
    正准备解包 .../libgraphicsmagick-q16-3_1.3.23-1build1_amd64.deb  ...
    正在解包 libgraphicsmagick-q16-3 (1.3.23-1build1) ...
    正在选中未选择的软件包 liblcms2-dev:amd64。
    正准备解包 .../liblcms2-dev_2.6-3ubuntu2_amd64.deb  ...
    正在解包 liblcms2-dev:amd64 (2.6-3ubuntu2) ...
    正在选中未选择的软件包 libwmf-dev。
    正准备解包 .../libwmf-dev_0.2.8.4-10.5ubuntu1_amd64.deb  ...
    正在解包 libwmf-dev (0.2.8.4-10.5ubuntu1) ...
    正在选中未选择的软件包 libgraphicsmagick1-dev。
    正准备解包 .../libgraphicsmagick1-dev_1.3.23-1build1_amd64.deb  ...
    正在解包 libgraphicsmagick1-dev (1.3.23-1build1) ...
    正在选中未选择的软件包 libid3tag0。
    正准备解包 .../libid3tag0_0.15.1b-11_amd64.deb  ...
    正在解包 libid3tag0 (0.15.1b-11) ...
    正在选中未选择的软件包 libsox-fmt-alsa:amd64。
    正准备解包 .../libsox-fmt-alsa_14.4.1-5_amd64.deb  ...
    正在解包 libsox-fmt-alsa:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 libsox-fmt-ao:amd64。
    正准备解包 .../libsox-fmt-ao_14.4.1-5_amd64.deb  ...
    正在解包 libsox-fmt-ao:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 libsox-fmt-base:amd64。
    正准备解包 .../libsox-fmt-base_14.4.1-5_amd64.deb  ...
    正在解包 libsox-fmt-base:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 libsox-fmt-mp3:amd64。
    正准备解包 .../libsox-fmt-mp3_14.4.1-5_amd64.deb  ...
    正在解包 libsox-fmt-mp3:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 libsox-fmt-oss:amd64。
    正准备解包 .../libsox-fmt-oss_14.4.1-5_amd64.deb  ...
    正在解包 libsox-fmt-oss:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 libsox-fmt-pulse:amd64。
    正准备解包 .../libsox-fmt-pulse_14.4.1-5_amd64.deb  ...
    正在解包 libsox-fmt-pulse:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 libsox-fmt-all:amd64。
    正准备解包 .../libsox-fmt-all_14.4.1-5_amd64.deb  ...
    正在解包 libsox-fmt-all:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 libsox-dev:amd64。
    正准备解包 .../libsox-dev_14.4.1-5_amd64.deb  ...
    正在解包 libsox-dev:amd64 (14.4.1-5) ...
    正在选中未选择的软件包 sox。
    正准备解包 .../sox_14.4.1-5_amd64.deb  ...
    正在解包 sox (14.4.1-5) ...
    正在处理用于 install-info (6.1.0.dfsg.1-5) 的触发器 ...
    正在处理用于 doc-base (0.10.7) 的触发器 ...
    Processing 2 added doc-base files...
    正在处理用于 man-db (2.7.5-1) 的触发器 ...
    正在处理用于 libc-bin (2.23-0ubuntu10) 的触发器 ...
    正在处理用于 mime-support (3.59ubuntu1) 的触发器 ...
    正在设置 libfftw3-long3:amd64 (3.3.4-2ubuntu1) ...
    正在设置 libfftw3-quad3:amd64 (3.3.4-2ubuntu1) ...
    正在设置 libsox2:amd64 (14.4.1-5) ...
    正在设置 bzip2-doc (1.0.6-8) ...
    正在设置 libbz2-dev:amd64 (1.0.6-8) ...
    正在设置 libexif-dev (0.6.21-2) ...
    正在设置 libfftw3-bin (3.3.4-2ubuntu1) ...
    正在设置 libfftw3-dev:amd64 (3.3.4-2ubuntu1) ...
    正在设置 libgraphicsmagick-q16-3 (1.3.23-1build1) ...
    正在设置 liblcms2-dev:amd64 (2.6-3ubuntu2) ...
    正在设置 libwmf-dev (0.2.8.4-10.5ubuntu1) ...
    正在设置 libgraphicsmagick1-dev (1.3.23-1build1) ...
    正在设置 libid3tag0 (0.15.1b-11) ...
    正在设置 libsox-fmt-alsa:amd64 (14.4.1-5) ...
    正在设置 libsox-fmt-ao:amd64 (14.4.1-5) ...
    正在设置 libsox-fmt-base:amd64 (14.4.1-5) ...
    正在设置 libsox-fmt-mp3:amd64 (14.4.1-5) ...
    正在设置 libsox-fmt-oss:amd64 (14.4.1-5) ...
    正在设置 libsox-fmt-pulse:amd64 (14.4.1-5) ...
    正在设置 libsox-fmt-all:amd64 (14.4.1-5) ...
    正在设置 libsox-dev:amd64 (14.4.1-5) ...
    正在设置 sox (14.4.1-5) ...
    正在处理用于 libc-bin (2.23-0ubuntu10) 的触发器 ...
    获取:1 file:/var/cuda-repo-8-0-local-cublas-performance-update  InRelease
    忽略:1 file:/var/cuda-repo-8-0-local-cublas-performance-update  InRelease
    获取:2 file:/var/cuda-repo-8-0-local-ga2  InRelease
    忽略:2 file:/var/cuda-repo-8-0-local-ga2  InRelease
    获取:3 file:/var/cuda-repo-8-0-local-cublas-performance-update  Release [574 B]
    获取:4 file:/var/cuda-repo-8-0-local-ga2  Release [574 B]
    获取:3 file:/var/cuda-repo-8-0-local-cublas-performance-update  Release [574 B]
    获取:4 file:/var/cuda-repo-8-0-local-ga2  Release [574 B]
    命中:7 http://linux.teamviewer.com/deb stable InRelease          
    获取:8 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]                 
    命中:9 http://cn.archive.ubuntu.com/ubuntu xenial InRelease                  
    命中:10 http://linux.teamviewer.com/deb preview InRelease                                              
    获取:11 http://cn.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]                          
    命中:12 https://packages.microsoft.com/repos/vscode stable InRelease
    命中:13 https://download.sublimetext.com apt/stable/ InRelease                                  
    获取:14 http://cn.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]                 
    已下载 323 kB,耗时 3秒 (101 kB/s)
    正在读取软件包列表... 完成
    Updated successfully.
    正在读取软件包列表... 完成
    正在分析软件包的依赖关系树       
    正在读取状态信息... 完成       
    注意,选中 'libpng12-dev' 而非 'libpng-dev'
    注意,选中 'libncurses5-dev' 而非 'ncurses-dev'
    build-essential 已经是最新版 (12.1ubuntu2)。
    g++ 已经是最新版 (4:5.3.1-1ubuntu1)。
    gcc 已经是最新版 (4:5.3.1-1ubuntu1)。
    gfortran 已经是最新版 (4:5.3.1-1ubuntu1)。
    gfortran 已设置为手动安装。
    libjpeg-dev 已经是最新版 (8c-2ubuntu8)。
    unzip 已经是最新版 (6.0-20ubuntu1)。
    cmake 已经是最新版 (3.5.1-1ubuntu3)。
    imagemagick 已经是最新版 (8:6.8.9.9-7ubuntu5.12)。
    libpng12-dev 已经是最新版 (1.2.54-1ubuntu1.1)。
    下列软件包是自动安装的并且现在不需要了:
      libllvm5.0 linux-headers-4.13.0-36 linux-headers-4.13.0-36-generic linux-headers-4.13.0-38
      linux-headers-4.13.0-38-generic linux-headers-4.13.0-45 linux-headers-4.13.0-45-generic
      linux-headers-4.4.0-130 linux-headers-4.4.0-130-generic linux-image-4.13.0-36-generic
      linux-image-4.13.0-37-generic linux-image-4.13.0-38-generic linux-image-4.13.0-45-generic
      linux-image-extra-4.13.0-36-generic linux-image-extra-4.13.0-37-generic
      linux-image-extra-4.13.0-38-generic linux-image-extra-4.13.0-45-generic
      linux-signed-image-4.13.0-37-generic linux-signed-image-4.13.0-38-generic
      linux-signed-image-4.13.0-45-generic
    使用'sudo apt autoremove'来卸载它(它们)。
    将会同时安装下列软件:
      aglfn gnuplot-data gnuplot-tex gnuplot5-data gnuplot5-qt liblua5.1-0 libqt4-dev-bin libqt4-opengl-dev
      libqt4-qt3support libreadline6-dev libtinfo-dev libwxbase3.0-0v5 libwxgtk3.0-0v5 python-pexpect
      python-ptyprocess python-simplegeneric qt4-linguist-tools qt4-qmake
    建议安装:
      feedgnuplot gnuplot-doc libgnuplot-iostream-dev python-gnuplot gnuplot5-doc ipython-doc ipython-notebook
      ipython-qtconsole python-zmq ncurses-doc firebird-dev libsqlite0-dev qt4-dev-tools qt4-doc readline-doc
      python-pexpect-doc
    下列【新】软件包将被安装:
      aglfn curl git-core gnuplot gnuplot-data gnuplot-tex gnuplot-x11 gnuplot5-data gnuplot5-qt ipython
      liblua5.1-0 libncurses5-dev libqt4-dev libqt4-dev-bin libqt4-opengl-dev libqt4-qt3support libreadline-dev
      libreadline6-dev libtinfo-dev libwxbase3.0-0v5 libwxgtk3.0-0v5 libzmq3-dev python-pexpect
      python-ptyprocess python-simplegeneric qt4-linguist-tools qt4-qmake
    升级了 0 个软件包,新安装了 27 个软件包,要卸载 0 个软件包,有 0 个软件包未被升级。
    需要下载 14.5 MB 的归档。
    解压缩后会消耗 68.4 MB 的额外空间。
    获取:1 http://cn.archive.ubuntu.com/ubuntu xenial-updates/main amd64 curl amd64 7.47.0-1ubuntu2.8 [139 kB]
    获取:2 http://cn.archive.ubuntu.com/ubuntu xenial-updates/main amd64 git-core all 1:2.7.4-0ubuntu1.4 [1,460 B]
    获取:3 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 aglfn all 1.7-3 [29.4 kB]
    获取:4 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 gnuplot-tex all 4.6.6-3 [10.1 kB]
    获取:5 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 gnuplot5-data all 5.0.3+dfsg2-1 [59.3 kB]
    获取:6 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 liblua5.1-0 amd64 5.1.5-8ubuntu1 [102 kB]       
    获取:7 http://cn.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libwxbase3.0-0v5 amd64 3.0.2+dfsg-1.3ubuntu0.1 [971 kB]
    获取:8 http://cn.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 libwxgtk3.0-0v5 amd64 3.0.2+dfsg-1.3ubuntu0.1 [4,344 kB]
    获取:9 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 gnuplot5-qt amd64 5.0.3+dfsg2-1 [951 kB]    
    获取:10 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 gnuplot all 4.6.6-3 [6,970 B]              
    获取:11 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 gnuplot-data all 4.6.6-3 [53.2 kB]         
    获取:12 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 gnuplot-x11 amd64 4.6.6-3 [794 kB]         
    获取:13 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 python-ptyprocess all 0.5-1 [12.9 kB]      
    获取:14 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 python-pexpect all 4.0.1-1 [40.5 kB]       
    获取:15 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 python-simplegeneric all 0.8.1-1 [11.5 kB]     
    获取:16 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 ipython all 2.4.1-1 [610 kB]               
    获取:17 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libtinfo-dev amd64 6.0+20160213-1ubuntu1 [77.4 kB]
    获取:18 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libncurses5-dev amd64 6.0+20160213-1ubuntu1 [175 kB]
    获取:19 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libqt4-qt3support amd64 4:4.8.7+dfsg-5ubuntu2 [1,051 kB]
    获取:20 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libqt4-dev-bin amd64 4:4.8.7+dfsg-5ubuntu2 [1,635 kB]
    获取:21 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 qt4-linguist-tools amd64 4:4.8.7+dfsg-5ubuntu2 [848 kB]
    获取:22 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 qt4-qmake amd64 4:4.8.7+dfsg-5ubuntu2 [1,293 kB]
    获取:23 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libqt4-dev amd64 4:4.8.7+dfsg-5ubuntu2 [851 kB]
    获取:24 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libqt4-opengl-dev amd64 4:4.8.7+dfsg-5ubuntu2 [22.9 kB]
    获取:25 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libreadline6-dev amd64 6.3-8ubuntu2 [124 kB]   
    获取:26 http://cn.archive.ubuntu.com/ubuntu xenial/main amd64 libreadline-dev amd64 6.3-8ubuntu2 [992 B]     
    获取:27 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libzmq3-dev amd64 4.1.4-7 [282 kB]         
    已下载 14.5 MB,耗时 1分 30秒 (161 kB/s)                                                                     
    正在选中未选择的软件包 curl。
    (正在读取数据库 ... 系统当前共安装有 446155 个文件和目录。)
    正准备解包 .../curl_7.47.0-1ubuntu2.8_amd64.deb  ...
    正在解包 curl (7.47.0-1ubuntu2.8) ...
    正在选中未选择的软件包 git-core。
    正准备解包 .../git-core_1%3a2.7.4-0ubuntu1.4_all.deb  ...
    正在解包 git-core (1:2.7.4-0ubuntu1.4) ...
    正在选中未选择的软件包 aglfn。
    正准备解包 .../archives/aglfn_1.7-3_all.deb  ...
    正在解包 aglfn (1.7-3) ...
    正在选中未选择的软件包 gnuplot-tex。
    正准备解包 .../gnuplot-tex_4.6.6-3_all.deb  ...
    正在解包 gnuplot-tex (4.6.6-3) ...
    正在选中未选择的软件包 gnuplot5-data。
    正准备解包 .../gnuplot5-data_5.0.3+dfsg2-1_all.deb  ...
    正在解包 gnuplot5-data (5.0.3+dfsg2-1) ...
    正在选中未选择的软件包 liblua5.1-0:amd64。
    正准备解包 .../liblua5.1-0_5.1.5-8ubuntu1_amd64.deb  ...
    正在解包 liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...
    正在选中未选择的软件包 libwxbase3.0-0v5:amd64。
    正准备解包 .../libwxbase3.0-0v5_3.0.2+dfsg-1.3ubuntu0.1_amd64.deb  ...
    正在解包 libwxbase3.0-0v5:amd64 (3.0.2+dfsg-1.3ubuntu0.1) ...
    正在选中未选择的软件包 libwxgtk3.0-0v5:amd64。
    正准备解包 .../libwxgtk3.0-0v5_3.0.2+dfsg-1.3ubuntu0.1_amd64.deb  ...
    正在解包 libwxgtk3.0-0v5:amd64 (3.0.2+dfsg-1.3ubuntu0.1) ...
    正在选中未选择的软件包 gnuplot5-qt。
    正准备解包 .../gnuplot5-qt_5.0.3+dfsg2-1_amd64.deb  ...
    正在解包 gnuplot5-qt (5.0.3+dfsg2-1) ...
    正在选中未选择的软件包 gnuplot。
    正准备解包 .../gnuplot_4.6.6-3_all.deb  ...
    正在解包 gnuplot (4.6.6-3) ...
    正在选中未选择的软件包 gnuplot-data。
    正准备解包 .../gnuplot-data_4.6.6-3_all.deb  ...
    正在解包 gnuplot-data (4.6.6-3) ...
    正在选中未选择的软件包 gnuplot-x11。
    正准备解包 .../gnuplot-x11_4.6.6-3_amd64.deb  ...
    正在解包 gnuplot-x11 (4.6.6-3) ...
    正在选中未选择的软件包 python-ptyprocess。
    正准备解包 .../python-ptyprocess_0.5-1_all.deb  ...
    正在解包 python-ptyprocess (0.5-1) ...
    正在选中未选择的软件包 python-pexpect。
    正准备解包 .../python-pexpect_4.0.1-1_all.deb  ...
    正在解包 python-pexpect (4.0.1-1) ...
    正在选中未选择的软件包 python-simplegeneric。
    正准备解包 .../python-simplegeneric_0.8.1-1_all.deb  ...
    正在解包 python-simplegeneric (0.8.1-1) ...
    正在选中未选择的软件包 ipython。
    正准备解包 .../ipython_2.4.1-1_all.deb  ...
    正在解包 ipython (2.4.1-1) ...
    正在选中未选择的软件包 libtinfo-dev:amd64。
    正准备解包 .../libtinfo-dev_6.0+20160213-1ubuntu1_amd64.deb  ...
    正在解包 libtinfo-dev:amd64 (6.0+20160213-1ubuntu1) ...
    正在选中未选择的软件包 libncurses5-dev:amd64。
    正准备解包 .../libncurses5-dev_6.0+20160213-1ubuntu1_amd64.deb  ...
    正在解包 libncurses5-dev:amd64 (6.0+20160213-1ubuntu1) ...
    正在选中未选择的软件包 libqt4-qt3support:amd64。
    正准备解包 .../libqt4-qt3support_4%3a4.8.7+dfsg-5ubuntu2_amd64.deb  ...
    正在解包 libqt4-qt3support:amd64 (4:4.8.7+dfsg-5ubuntu2) ...
    正在选中未选择的软件包 libqt4-dev-bin。
    正准备解包 .../libqt4-dev-bin_4%3a4.8.7+dfsg-5ubuntu2_amd64.deb  ...
    正在解包 libqt4-dev-bin (4:4.8.7+dfsg-5ubuntu2) ...
    正在选中未选择的软件包 qt4-linguist-tools。
    正准备解包 .../qt4-linguist-tools_4%3a4.8.7+dfsg-5ubuntu2_amd64.deb  ...
    正在解包 qt4-linguist-tools (4:4.8.7+dfsg-5ubuntu2) ...
    正在选中未选择的软件包 qt4-qmake。
    正准备解包 .../qt4-qmake_4%3a4.8.7+dfsg-5ubuntu2_amd64.deb  ...
    正在解包 qt4-qmake (4:4.8.7+dfsg-5ubuntu2) ...
    正在选中未选择的软件包 libqt4-dev。
    正准备解包 .../libqt4-dev_4%3a4.8.7+dfsg-5ubuntu2_amd64.deb  ...
    正在解包 libqt4-dev (4:4.8.7+dfsg-5ubuntu2) ...
    正在选中未选择的软件包 libqt4-opengl-dev。
    正准备解包 .../libqt4-opengl-dev_4%3a4.8.7+dfsg-5ubuntu2_amd64.deb  ...
    正在解包 libqt4-opengl-dev (4:4.8.7+dfsg-5ubuntu2) ...
    正在选中未选择的软件包 libreadline6-dev:amd64。
    正准备解包 .../libreadline6-dev_6.3-8ubuntu2_amd64.deb  ...
    正在解包 libreadline6-dev:amd64 (6.3-8ubuntu2) ...
    正在选中未选择的软件包 libreadline-dev:amd64。
    正准备解包 .../libreadline-dev_6.3-8ubuntu2_amd64.deb  ...
    正在解包 libreadline-dev:amd64 (6.3-8ubuntu2) ...
    正在选中未选择的软件包 libzmq3-dev:amd64。
    正准备解包 .../libzmq3-dev_4.1.4-7_amd64.deb  ...
    正在解包 libzmq3-dev:amd64 (4.1.4-7) ...
    正在处理用于 man-db (2.7.5-1) 的触发器 ...
    正在处理用于 libc-bin (2.23-0ubuntu10) 的触发器 ...
    正在处理用于 hicolor-icon-theme (0.15-0ubuntu1.1) 的触发器 ...
    正在处理用于 desktop-file-utils (0.22-1ubuntu5.2) 的触发器 ...
    正在处理用于 bamfdaemon (0.5.3~bzr0+16.04.20180209-0ubuntu1) 的触发器 ...
    Rebuilding /usr/share/applications/bamf-2.index...
    正在处理用于 gnome-menus (3.13.3-6ubuntu3.1) 的触发器 ...
    正在处理用于 mime-support (3.59ubuntu1) 的触发器 ...
    正在处理用于 install-info (6.1.0.dfsg.1-5) 的触发器 ...
    正在设置 curl (7.47.0-1ubuntu2.8) ...
    正在设置 git-core (1:2.7.4-0ubuntu1.4) ...
    正在设置 aglfn (1.7-3) ...
    正在设置 gnuplot-tex (4.6.6-3) ...
    正在设置 gnuplot5-data (5.0.3+dfsg2-1) ...
    正在设置 liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...
    正在设置 libwxbase3.0-0v5:amd64 (3.0.2+dfsg-1.3ubuntu0.1) ...
    正在设置 libwxgtk3.0-0v5:amd64 (3.0.2+dfsg-1.3ubuntu0.1) ...
    正在设置 gnuplot5-qt (5.0.3+dfsg2-1) ...
    update-alternatives: 使用 /usr/bin/gnuplot5-qt 来在自动模式中提供 /usr/bin/gnuplot (gnuplot)
    update-alternatives: 使用 /usr/bin/gnuplot5-qt 来在自动模式中提供 /usr/bin/gnuplot5 (gnuplot5)
    正在设置 gnuplot (4.6.6-3) ...
    正在设置 gnuplot-data (4.6.6-3) ...
    正在设置 gnuplot-x11 (4.6.6-3) ...
    update-alternatives: 使用 /usr/bin/gnuplot4-x11 来在自动模式中提供 /usr/bin/gnuplot4 (gnuplot4)
    正在设置 python-ptyprocess (0.5-1) ...
    正在设置 python-pexpect (4.0.1-1) ...
    正在设置 python-simplegeneric (0.8.1-1) ...
    正在设置 ipython (2.4.1-1) ...
    正在设置 libtinfo-dev:amd64 (6.0+20160213-1ubuntu1) ...
    正在设置 libncurses5-dev:amd64 (6.0+20160213-1ubuntu1) ...
    正在设置 libqt4-qt3support:amd64 (4:4.8.7+dfsg-5ubuntu2) ...
    正在设置 libqt4-dev-bin (4:4.8.7+dfsg-5ubuntu2) ...
    正在设置 qt4-linguist-tools (4:4.8.7+dfsg-5ubuntu2) ...
    正在设置 qt4-qmake (4:4.8.7+dfsg-5ubuntu2) ...
    正在设置 libqt4-dev (4:4.8.7+dfsg-5ubuntu2) ...
    正在设置 libqt4-opengl-dev (4:4.8.7+dfsg-5ubuntu2) ...
    正在设置 libreadline6-dev:amd64 (6.3-8ubuntu2) ...
    正在设置 libreadline-dev:amd64 (6.3-8ubuntu2) ...
    正在设置 libzmq3-dev:amd64 (4.1.4-7) ...
    正在处理用于 libc-bin (2.23-0ubuntu10) 的触发器 ...
    ==> Found GCC 5, installing GCC 4.9.
    正在读取软件包列表... 完成
    正在分析软件包的依赖关系树       
    正在读取状态信息... 完成       
    下列软件包是自动安装的并且现在不需要了:
      libllvm5.0 linux-headers-4.13.0-36 linux-headers-4.13.0-36-generic linux-headers-4.13.0-38
      linux-headers-4.13.0-38-generic linux-headers-4.13.0-45 linux-headers-4.13.0-45-generic
      linux-headers-4.4.0-130 linux-headers-4.4.0-130-generic linux-image-4.13.0-36-generic
      linux-image-4.13.0-37-generic linux-image-4.13.0-38-generic linux-image-4.13.0-45-generic
      linux-image-extra-4.13.0-36-generic linux-image-extra-4.13.0-37-generic
      linux-image-extra-4.13.0-38-generic linux-image-extra-4.13.0-45-generic
      linux-signed-image-4.13.0-37-generic linux-signed-image-4.13.0-38-generic
      linux-signed-image-4.13.0-45-generic
    使用'sudo apt autoremove'来卸载它(它们)。
    将会同时安装下列软件:
      cpp-4.9 gcc-4.9-base libasan1 libgcc-4.9-dev libstdc++-4.9-dev
    建议安装:
      gcc-4.9-locales g++-4.9-multilib gcc-4.9-doc libstdc++6-4.9-dbg gcc-4.9-multilib libgcc1-dbg libgomp1-dbg
      libitm1-dbg libatomic1-dbg libasan1-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg
      libquadmath0-dbg libstdc++-4.9-doc
    下列【新】软件包将被安装:
      cpp-4.9 g++-4.9 gcc-4.9 gcc-4.9-base libasan1 libgcc-4.9-dev libgfortran-4.9-dev libstdc++-4.9-dev
    升级了 0 个软件包,新安装了 8 个软件包,要卸载 0 个软件包,有 0 个软件包未被升级。
    需要下载 35.1 MB 的归档。
    解压缩后会消耗 92.8 MB 的额外空间。
    获取:1 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 gcc-4.9-base amd64 4.9.3-13ubuntu2 [15.3 kB]
    获取:2 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 cpp-4.9 amd64 4.9.3-13ubuntu2 [4,972 kB]
    获取:3 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libasan1 amd64 4.9.3-13ubuntu2 [197 kB]     
    获取:4 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libgcc-4.9-dev amd64 4.9.3-13ubuntu2 [2,073 kB]
    获取:5 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 gcc-4.9 amd64 4.9.3-13ubuntu2 [5,442 kB]    
    获取:6 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libstdc++-4.9-dev amd64 4.9.3-13ubuntu2 [1,126 kB]
    获取:7 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 g++-4.9 amd64 4.9.3-13ubuntu2 [21.0 MB]     
    获取:8 http://cn.archive.ubuntu.com/ubuntu xenial/universe amd64 libgfortran-4.9-dev amd64 4.9.3-13ubuntu2 [283 kB]
    已下载 35.1 MB,耗时 50秒 (691 kB/s)                                                                         
    正在选中未选择的软件包 gcc-4.9-base:amd64。
    (正在读取数据库 ... 系统当前共安装有 450775 个文件和目录。)
    正准备解包 .../gcc-4.9-base_4.9.3-13ubuntu2_amd64.deb  ...
    正在解包 gcc-4.9-base:amd64 (4.9.3-13ubuntu2) ...
    正在选中未选择的软件包 cpp-4.9。
    正准备解包 .../cpp-4.9_4.9.3-13ubuntu2_amd64.deb  ...
    正在解包 cpp-4.9 (4.9.3-13ubuntu2) ...
    正在选中未选择的软件包 libasan1:amd64。
    正准备解包 .../libasan1_4.9.3-13ubuntu2_amd64.deb  ...
    正在解包 libasan1:amd64 (4.9.3-13ubuntu2) ...
    正在选中未选择的软件包 libgcc-4.9-dev:amd64。
    正准备解包 .../libgcc-4.9-dev_4.9.3-13ubuntu2_amd64.deb  ...
    正在解包 libgcc-4.9-dev:amd64 (4.9.3-13ubuntu2) ...
    正在选中未选择的软件包 gcc-4.9。
    正准备解包 .../gcc-4.9_4.9.3-13ubuntu2_amd64.deb  ...
    正在解包 gcc-4.9 (4.9.3-13ubuntu2) ...
    正在选中未选择的软件包 libstdc++-4.9-dev:amd64。
    正准备解包 .../libstdc++-4.9-dev_4.9.3-13ubuntu2_amd64.deb  ...
    正在解包 libstdc++-4.9-dev:amd64 (4.9.3-13ubuntu2) ...
    正在选中未选择的软件包 g++-4.9。
    正准备解包 .../g++-4.9_4.9.3-13ubuntu2_amd64.deb  ...
    正在解包 g++-4.9 (4.9.3-13ubuntu2) ...
    正在选中未选择的软件包 libgfortran-4.9-dev:amd64。
    正准备解包 .../libgfortran-4.9-dev_4.9.3-13ubuntu2_amd64.deb  ...
    正在解包 libgfortran-4.9-dev:amd64 (4.9.3-13ubuntu2) ...
    正在处理用于 man-db (2.7.5-1) 的触发器 ...
    正在处理用于 libc-bin (2.23-0ubuntu10) 的触发器 ...
    正在设置 gcc-4.9-base:amd64 (4.9.3-13ubuntu2) ...
    正在设置 cpp-4.9 (4.9.3-13ubuntu2) ...
    正在设置 libasan1:amd64 (4.9.3-13ubuntu2) ...
    正在设置 libgcc-4.9-dev:amd64 (4.9.3-13ubuntu2) ...
    正在设置 gcc-4.9 (4.9.3-13ubuntu2) ...
    正在设置 libstdc++-4.9-dev:amd64 (4.9.3-13ubuntu2) ...
    正在设置 g++-4.9 (4.9.3-13ubuntu2) ...
    正在设置 libgfortran-4.9-dev:amd64 (4.9.3-13ubuntu2) ...
    正在处理用于 libc-bin (2.23-0ubuntu10) 的触发器 ...
    Skipping install of OpenBLAS - it is already installed.
    ==> Torch7's dependencies have been installed
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$ ls
    admin      cmake           extra         install-deps.bat  pkg        test.sh                 update.sh
    clean.bat  CMakeLists.txt  install.bat   install.sh        README.md  travis_cuda_install.sh  win-files
    clean.sh   exe             install-deps  LICENSE.md        test.bat   uninstall.bat
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$ ./install.sh
    Prefix set to /home/gbt/MVIG-SJTU/distro/install
    子模组 'exe/env' (https://github.com/torch/env.git) 未对路径 'exe/env' 注册
    子模组 'exe/luajit-rocks' (https://github.com/torch/luajit-rocks.git) 未对路径 'exe/luajit-rocks' 注册
    子模组 'exe/qtlua' (https://github.com/torch/qtlua.git) 未对路径 'exe/qtlua' 注册
    子模组 'exe/trepl' (https://github.com/torch/trepl.git) 未对路径 'exe/trepl' 注册
    子模组 'extra/argcheck' (https://github.com/torch/argcheck.git) 未对路径 'extra/argcheck' 注册
    子模组 'extra/cudnn' (https://github.com/soumith/cudnn.torch.git) 未对路径 'extra/cudnn' 注册
    子模组 'extra/cunn' (https://github.com/torch/cunn.git) 未对路径 'extra/cunn' 注册
    子模组 'extra/cutorch' (https://github.com/torch/cutorch.git) 未对路径 'extra/cutorch' 注册
    子模组 'extra/graph' (https://github.com/torch/graph) 未对路径 'extra/graph' 注册
    子模组 'extra/lua-cjson' (https://github.com/mpx/lua-cjson) 未对路径 'extra/lua-cjson' 注册
    子模组 'extra/luaffifb' (https://github.com/facebook/luaffifb) 未对路径 'extra/luaffifb' 注册
    子模组 'extra/luafilesystem' (https://github.com/keplerproject/luafilesystem.git) 未对路径 'extra/luafilesystem' 注册
    子模组 'extra/moses' (https://github.com/Yonaba/Moses.git) 未对路径 'extra/moses' 注册
    子模组 'extra/nn' (https://github.com/torch/nn.git) 未对路径 'extra/nn' 注册
    子模组 'extra/nngraph' (https://github.com/torch/nngraph) 未对路径 'extra/nngraph' 注册
    子模组 'extra/nnx' (https://github.com/clementfarabet/lua---nnx.git) 未对路径 'extra/nnx' 注册
    子模组 'extra/penlight' (https://github.com/stevedonovan/Penlight.git) 未对路径 'extra/penlight' 注册
    子模组 'extra/threads' (https://github.com/torch/threads-ffi.git) 未对路径 'extra/threads' 注册
    子模组 'pkg/cwrap' (https://github.com/torch/cwrap.git) 未对路径 'pkg/cwrap' 注册
    子模组 'pkg/dok' (https://github.com/torch/dok.git) 未对路径 'pkg/dok' 注册
    子模组 'pkg/gnuplot' (https://github.com/torch/gnuplot.git) 未对路径 'pkg/gnuplot' 注册
    子模组 'pkg/image' (https://github.com/torch/image.git) 未对路径 'pkg/image' 注册
    子模组 'pkg/optim' (https://github.com/torch/optim.git) 未对路径 'pkg/optim' 注册
    子模组 'pkg/paths' (https://github.com/torch/paths.git) 未对路径 'pkg/paths' 注册
    子模组 'pkg/qttorch' (https://github.com/torch/qttorch.git) 未对路径 'pkg/qttorch' 注册
    子模组 'pkg/sundown' (https://github.com/torch/sundown-ffi.git) 未对路径 'pkg/sundown' 注册
    子模组 'pkg/sys' (https://github.com/torch/sys.git) 未对路径 'pkg/sys' 注册
    子模组 'pkg/torch' (https://github.com/torch/torch7.git) 未对路径 'pkg/torch' 注册
    子模组 'pkg/xlua' (https://github.com/torch/xlua.git) 未对路径 'pkg/xlua' 注册
    正克隆到 'exe/env'...
    remote: Counting objects: 26, done.
    remote: Total 26 (delta 0), reused 0 (delta 0), pack-reused 26
    展开对象中: 100% (26/26), 完成.
    检查连接... 完成。
    子模组路径 'exe/env':检出 'd28424ac5b638686410304c60c31693849f3d1dd'
    正克隆到 'exe/luajit-rocks'...
    remote: Counting objects: 2737, done.
    remote: Total 2737 (delta 0), reused 0 (delta 0), pack-reused 2737
    接收对象中: 100% (2737/2737), 7.53 MiB | 234.00 KiB/s, 完成.
    处理 delta 中: 100% (1759/1759), 完成.
    检查连接... 完成。
    子模组路径 'exe/luajit-rocks':检出 '411f4b9d9c4be176d4aab965ebfce50911583e14'
    正克隆到 'exe/qtlua'...
    remote: Counting objects: 710, done.
    remote: Total 710 (delta 0), reused 0 (delta 0), pack-reused 710
    接收对象中: 100% (710/710), 597.10 KiB | 392.00 KiB/s, 完成.
    处理 delta 中: 100% (354/354), 完成.
    检查连接... 完成。
    子模组路径 'exe/qtlua':检出 '8b80419ca2458e172b0d245999114f2b9d4ac118'
    正克隆到 'exe/trepl'...
    remote: Counting objects: 514, done.
    remote: Total 514 (delta 0), reused 0 (delta 0), pack-reused 514
    接收对象中: 100% (514/514), 115.87 KiB | 0 bytes/s, 完成.
    处理 delta 中: 100% (294/294), 完成.
    检查连接... 完成。
    子模组路径 'exe/trepl':检出 'e5e17e3a56997123bd6c66cb8575175d3a6945bb'
    正克隆到 'extra/argcheck'...
    remote: Counting objects: 538, done.
    remote: Total 538 (delta 0), reused 0 (delta 0), pack-reused 538
    接收对象中: 100% (538/538), 646.22 KiB | 321.00 KiB/s, 完成.
    处理 delta 中: 100% (291/291), 完成.
    检查连接... 完成。
    子模组路径 'extra/argcheck':检出 'b3b32c060c4269c25d11cf9f983c291d9448e1ee'
    正克隆到 'extra/cudnn'...
    remote: Counting objects: 2074, done.
    remote: Total 2074 (delta 0), reused 0 (delta 0), pack-reused 2073
    接收对象中: 100% (2074/2074), 803.27 KiB | 265.00 KiB/s, 完成.
    处理 delta 中: 100% (1350/1350), 完成.
    检查连接... 完成。
    子模组路径 'extra/cudnn':检出 '008c49de3982119378576fa4244e472a50fd9ebe'
    正克隆到 'extra/cunn'...
    remote: Counting objects: 3995, done.
    remote: Total 3995 (delta 0), reused 0 (delta 0), pack-reused 3995
    接收对象中: 100% (3995/3995), 1.46 MiB | 653.00 KiB/s, 完成.
    处理 delta 中: 100% (2581/2581), 完成.
    检查连接... 完成。
    子模组路径 'extra/cunn':检出 '27d79db5ac8f9fa3995ac43f876e4eb146d99913'
    正克隆到 'extra/cutorch'...
    remote: Counting objects: 5701, done.
    remote: Total 5701 (delta 0), reused 0 (delta 0), pack-reused 5701
    接收对象中: 100% (5701/5701), 2.10 MiB | 463.00 KiB/s, 完成.
    处理 delta 中: 100% (3465/3465), 完成.
    检查连接... 完成。
    子模组路径 'extra/cutorch':检出 'caf84f3af0b1e9f6bd5c4129c01345f7bd72e431'
    正克隆到 'extra/graph'...
    remote: Counting objects: 225, done.
    remote: Total 225 (delta 0), reused 0 (delta 0), pack-reused 225
    接收对象中: 100% (225/225), 56.70 KiB | 0 bytes/s, 完成.
    处理 delta 中: 100% (112/112), 完成.
    检查连接... 完成。
    子模组路径 'extra/graph':检出 '37dac07a19eb3809b8081514bc781206241863a0'
    正克隆到 'extra/lua-cjson'...
    remote: Counting objects: 1040, done.
    remote: Total 1040 (delta 0), reused 0 (delta 0), pack-reused 1040
    接收对象中: 100% (1040/1040), 269.29 KiB | 159.00 KiB/s, 完成.
    处理 delta 中: 100% (661/661), 完成.
    检查连接... 完成。
    子模组路径 'extra/lua-cjson':检出 'e8972ac754788d3ef10a57a36016d6c3e85ba20d'
    正克隆到 'extra/luaffifb'...
    remote: Counting objects: 963, done.
    remote: Total 963 (delta 0), reused 0 (delta 0), pack-reused 963
    接收对象中: 100% (963/963), 452.84 KiB | 329.00 KiB/s, 完成.
    处理 delta 中: 100% (684/684), 完成.
    检查连接... 完成。
    子模组路径 'extra/luaffifb':检出 '610ce4dc6de318c8f0eb027f052be081349097be'
    正克隆到 'extra/luafilesystem'...
    remote: Counting objects: 1643, done.
    remote: Total 1643 (delta 0), reused 0 (delta 0), pack-reused 1643
    接收对象中: 100% (1643/1643), 326.64 KiB | 250.00 KiB/s, 完成.
    处理 delta 中: 100% (746/746), 完成.
    检查连接... 完成。
    子模组路径 'extra/luafilesystem':检出 '3c4e563d9c140319e28c419f2710b51a2f6d6d24'
    正克隆到 'extra/moses'...
    remote: Counting objects: 1949, done.
    remote: Compressing objects: 100% (30/30), done.
    remote: Total 1949 (delta 14), reused 30 (delta 12), pack-reused 1906
    接收对象中: 100% (1949/1949), 1.42 MiB | 654.00 KiB/s, 完成.
    处理 delta 中: 100% (1128/1128), 完成.
    检查连接... 完成。
    子模组路径 'extra/moses':检出 'ded0a9b773bb78ded2c1dd5da721bbee4a3e32c6'
    正克隆到 'extra/nn'...
    remote: Counting objects: 7662, done.
    remote: Total 7662 (delta 0), reused 0 (delta 0), pack-reused 7662
    接收对象中: 100% (7662/7662), 3.73 MiB | 652.00 KiB/s, 完成.
    处理 delta 中: 100% (4894/4894), 完成.
    检查连接... 完成。
    子模组路径 'extra/nn':检出 '200ae7d55a3381a232256223c0694498f8f51df0'
    正克隆到 'extra/nngraph'...
    remote: Counting objects: 664, done.
    remote: Total 664 (delta 0), reused 0 (delta 0), pack-reused 664
    接收对象中: 100% (664/664), 1.87 MiB | 5.00 KiB/s, 完成.
    处理 delta 中: 100% (356/356), 完成.
    检查连接... 完成。
    子模组路径 'extra/nngraph':检出 '3ed3b9ba9d1adf72c1fe15291a1e50b843cf04f9'
    正克隆到 'extra/nnx'...
    remote: Counting objects: 2483, done.
    remote: Total 2483 (delta 0), reused 0 (delta 0), pack-reused 2483
    接收对象中: 100% (2483/2483), 1.27 MiB | 7.00 KiB/s, 完成.
    处理 delta 中: 100% (1420/1420), 完成.
    检查连接... 完成。
    子模组路径 'extra/nnx':检出 '1c28e231f885899a4ed68266e788306cab2ac07a'
    正克隆到 'extra/penlight'...
    remote: Counting objects: 4258, done.
    remote: Total 4258 (delta 0), reused 0 (delta 0), pack-reused 4258
    接收对象中: 100% (4258/4258), 1.49 MiB | 369.00 KiB/s, 完成.
    处理 delta 中: 100% (2560/2560), 完成.
    检查连接... 完成。
    子模组路径 'extra/penlight':检出 '6d108e6a699fbafd5dace1019d03f4b4b18231fa'
    正克隆到 'extra/threads'...
    remote: Counting objects: 429, done.
    remote: Total 429 (delta 0), reused 0 (delta 0), pack-reused 429
    接收对象中: 100% (429/429), 108.45 KiB | 138.00 KiB/s, 完成.
    处理 delta 中: 100% (227/227), 完成.
    检查连接... 完成。
    子模组路径 'extra/threads':检出 '7094a90be44ecdd5f9f0b90560473ad27f3bb07d'
    正克隆到 'pkg/cwrap'...
    remote: Counting objects: 109, done.
    remote: Total 109 (delta 0), reused 0 (delta 0), pack-reused 109
    接收对象中: 100% (109/109), 38.05 KiB | 0 bytes/s, 完成.
    处理 delta 中: 100% (43/43), 完成.
    检查连接... 完成。
    子模组路径 'pkg/cwrap':检出 'dbd0a623dc4dfb4b8169d5aecc6dd9aec2f22792'
    正克隆到 'pkg/dok'...
    remote: Counting objects: 186, done.
    remote: Total 186 (delta 0), reused 0 (delta 0), pack-reused 186
    接收对象中: 100% (186/186), 133.83 KiB | 0 bytes/s, 完成.
    处理 delta 中: 100% (59/59), 完成.
    检查连接... 完成。
    子模组路径 'pkg/dok':检出 '1b36900e1bfa6ee7f48db52c577bdeb7d9e85909'
    正克隆到 'pkg/gnuplot'...
    remote: Counting objects: 308, done.
    remote: Total 308 (delta 0), reused 0 (delta 0), pack-reused 308
    接收对象中: 100% (308/308), 241.90 KiB | 136.00 KiB/s, 完成.
    处理 delta 中: 100% (167/167), 完成.
    检查连接... 完成。
    子模组路径 'pkg/gnuplot':检出 'a75e6782bdd5a7aa3ed5c2a0a88b63a916472c66'
    正克隆到 'pkg/image'...
    remote: Counting objects: 1392, done.
    remote: Total 1392 (delta 0), reused 0 (delta 0), pack-reused 1392
    接收对象中: 100% (1392/1392), 2.75 MiB | 311.00 KiB/s, 完成.
    处理 delta 中: 100% (767/767), 完成.
    检查连接... 完成。
    子模组路径 'pkg/image':检出 '5aa18819b6a7b44751f8a858bd232d1c07b67985'
    正克隆到 'pkg/optim'...
    remote: Counting objects: 929, done.
    remote: Total 929 (delta 0), reused 0 (delta 0), pack-reused 929
    接收对象中: 100% (929/929), 403.82 KiB | 179.00 KiB/s, 完成.
    处理 delta 中: 100% (513/513), 完成.
    检查连接... 完成。
    子模组路径 'pkg/optim':检出 '656c42af1f996e4a5d6aae3b9aeac831ca162241'
    正克隆到 'pkg/paths'...
    remote: Counting objects: 153, done.
    remote: Total 153 (delta 0), reused 0 (delta 0), pack-reused 153
    接收对象中: 100% (153/153), 53.42 KiB | 0 bytes/s, 完成.
    处理 delta 中: 100% (62/62), 完成.
    检查连接... 完成。
    子模组路径 'pkg/paths':检出 '4ebe222ba12589fb9d86c1d3895d7f509df77b6a'
    正克隆到 'pkg/qttorch'...
    remote: Counting objects: 60, done.
    remote: Total 60 (delta 0), reused 0 (delta 0), pack-reused 60
    展开对象中: 100% (60/60), 完成.
    检查连接... 完成。
    子模组路径 'pkg/qttorch':检出 'ba5b5a143482857f80237181d5fde0a3ba20477b'
    正克隆到 'pkg/sundown'...
    remote: Counting objects: 238, done.
    remote: Total 238 (delta 0), reused 0 (delta 0), pack-reused 238
    接收对象中: 100% (238/238), 140.57 KiB | 62.00 KiB/s, 完成.
    处理 delta 中: 100% (80/80), 完成.
    检查连接... 完成。
    子模组路径 'pkg/sundown':检出 '4324669b1adbde92cef2dbf4550428a13a03ca6f'
    正克隆到 'pkg/sys'...
    remote: Counting objects: 220, done.
    remote: Total 220 (delta 0), reused 0 (delta 0), pack-reused 220
    接收对象中: 100% (220/220), 36.83 KiB | 0 bytes/s, 完成.
    处理 delta 中: 100% (115/115), 完成.
    检查连接... 完成。
    子模组路径 'pkg/sys':检出 'f073f057d3fd2148866eaa0444a62ababfdf935e'
    正克隆到 'pkg/torch'...
    remote: Counting objects: 6722, done.
    remote: Total 6722 (delta 0), reused 0 (delta 0), pack-reused 6722
    接收对象中: 100% (6722/6722), 2.54 MiB | 340.00 KiB/s, 完成.
    处理 delta 中: 100% (4209/4209), 完成.
    检查连接... 完成。
    子模组路径 'pkg/torch':检出 '3e9e141ced1afd0cad451e69f90e6e53503647ca'
    正克隆到 'pkg/xlua'...
    remote: Counting objects: 282, done.
    remote: Total 282 (delta 0), reused 0 (delta 0), pack-reused 282
    接收对象中: 100% (282/282), 59.22 KiB | 0 bytes/s, 完成.
    处理 delta 中: 100% (156/156), 完成.
    检查连接... 完成。
    子模组路径 'pkg/xlua':检出 '41308fe696bf8b0892f4ad4f9857d12a87a3f75e'
    Installing Lua version: LUAJIT21
    Found CUDA on your machine. Installing CMake 3.6 modules to get up-to-date FindCUDA
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/cmake/3.6/build
    Install the project...
    -- Install configuration: ""
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/FindCUDA.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/FindCUDA
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/FindCUDA/select_compute_arch.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/FindCUDA/parse_cubin.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/FindCUDA/run_nvcc.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/FindCUDA/make2cmake.cmake
    FindCuda bits of CMake 3.6 installed
    Installing common Lua packages
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c src/lfs.c -o src/lfs.o
    gcc -shared -o lfs.so -L/home/gbt/MVIG-SJTU/distro/install/lib src/lfs.o
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    No existing manifest. Attempting to rebuild...
    luafilesystem 1.6.3-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: MIT/X11)

    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    penlight scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: MIT/X11)

    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c lua_cjson.c -o lua_cjson.o
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c strbuf.c -o strbuf.o
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c fpconv.c -o fpconv.o
    gcc -shared -o cjson.so -L/home/gbt/MVIG-SJTU/distro/install/lib lua_cjson.o strbuf.o fpconv.o
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    lua-cjson 2.1devel-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: MIT)

    Installing core Torch packages
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c test.c -o test.o
    gcc -shared -o ffi/libtest.so -L/home/gbt/MVIG-SJTU/distro/install/lib test.o
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c call.c -o call.o -Idynasm
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c ctype.c -o ctype.o -Idynasm
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c ffi.c -o ffi.o -Idynasm
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c parser.c -o parser.o -Idynasm
    gcc -shared -o ffi.so -L/home/gbt/MVIG-SJTU/distro/install/lib call.o ctype.o ffi.o parser.o
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    luaffi scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c src/autolink.c -o src/autolink.o -Isrc/ -Ihtml/
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c src/buffer.c -o src/buffer.o -Isrc/ -Ihtml/
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c src/markdown.c -o src/markdown.o -Isrc/ -Ihtml/
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c src/stack.c -o src/stack.o -Isrc/ -Ihtml/
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c html/houdini_href_e.c -o html/houdini_href_e.o -Isrc/ -Ihtml/
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c html/houdini_html_e.c -o html/houdini_html_e.o -Isrc/ -Ihtml/
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c html/html.c -o html/html.o -Isrc/ -Ihtml/
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c html/html_smartypants.c -o html/html_smartypants.o -Isrc/ -Ihtml/
    gcc -shared -o libsundown.so -L/home/gbt/MVIG-SJTU/distro/install/lib src/autolink.o src/buffer.o src/markdown.o src/stack.o html/houdini_href_e.o html/houdini_html_e.o html/html.o html/html_smartypants.o
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    sundown scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    cwrap scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DLUALIB= -DLUA_INCDIR="/home/gbt/MVIG-SJTU/distro/install/include" -DLUA_LIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib" -DLUADIR="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/paths/scm-1/lua" -DLIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/paths/scm-1/lib" -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/paths/scm-1" && make

    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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 include file fcntl.h
    -- Looking for include file fcntl.h - found
    -- Looking for include file unistd.h
    -- Looking for include file unistd.h - found
    -- Looking for include file dirent.h
    -- Looking for include file dirent.h - found
    -- Looking for include file time.h
    -- Looking for include file time.h - found
    -- Looking for include file sys/time.h
    -- Looking for include file sys/time.h - found
    -- Looking for include file sys/ndir.h
    -- Looking for include file sys/ndir.h - not found
    -- Looking for include file sys/utsname.h
    -- Looking for include file sys/utsname.h - found
    -- Looking for include file sys/dir.h
    -- Looking for include file sys/dir.h - found
    -- Looking for include file ndir.h
    -- Looking for include file ndir.h - not found
    -- Looking for getcwd
    -- Looking for getcwd - found
    -- Looking for dlopen in dl
    -- Looking for dlopen in dl - found
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/pkg/paths/build
    Scanning dependencies of target paths
    [ 50%] Building C object CMakeFiles/paths.dir/paths.c.o
    [100%] Linking C shared module libpaths.so
    CMakeFiles/paths.dir/paths.c.o:在函数‘lua_tmpname’中:
    paths.c:(.text+0x627): 警告: the use of `tempnam' is dangerous, better use `mkstemp'
    [100%] Built target paths
    cd build && make install
    [100%] Built target paths
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/paths/scm-1/lua/paths/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/paths/scm-1/lib/libpaths.so
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    paths scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DLUA=/home/gbt/MVIG-SJTU/distro/install/bin/luajit -DLUALIB= -DLUA_BINDIR="/home/gbt/MVIG-SJTU/distro/install/bin" -DLUA_INCDIR="/home/gbt/MVIG-SJTU/distro/install/include" -DLUA_LIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib" -DLUADIR="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua" -DLIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lib" -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1" && make -j$(getconf _NPROCESSORS_ONLN)

    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:200 (if):
      Policy CMP0054 is not set: Only interpret if() arguments as variables or
      keywords when unquoted.  Run "cmake --help-policy CMP0054" for policy
      details.  Use the cmake_policy command to set the policy and suppress this
      warning.

      Quoted variables like "c" will no longer be dereferenced when the policy is
      set to NEW.  Since the policy is not set the OLD behavior will be used.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:324 (_OPENMP_GET_FLAGS)
      CMakeLists.txt:48 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Found OpenMP_C: -fopenmp (found version "4.0")
    -- Found OpenMP_CXX: -fopenmp (found version "4.0")
    -- Compiling with OpenMP support
    CMake Deprecation Warning at lib/TH/CMakeLists.txt:5 (CMAKE_POLICY):
      The OLD behavior for policy CMP0026 will be removed from a future version
      of CMake.

      The cmake-policies(7) manual explains that the OLD behaviors of all
      policies are deprecated and that a policy should be set to OLD only under
      specific short-term circumstances.  Projects should be ported to the NEW
      behavior and not rely on setting a policy to OLD.


    -- Found OpenMP_C: -fopenmp (found version "4.0")
    -- Found OpenMP_CXX: -fopenmp (found version "4.0")
    -- Compiling with OpenMP support
    -- Could not find hardware support for NEON on this machine.
    -- No OMAP3 processor on this machine.
    -- No OMAP4 processor on this machine.
    -- Looking for cpuid.h
    -- Looking for cpuid.h - found
    -- Performing Test HAVE_GCC_GET_CPUID
    -- Performing Test HAVE_GCC_GET_CPUID - Success
    -- Performing Test NO_GCC_EBX_FPIC_BUG
    -- Performing Test NO_GCC_EBX_FPIC_BUG - Success
    -- Performing Test C_HAS_SSE1_1
    -- Performing Test C_HAS_SSE1_1 - Success
    -- Performing Test C_HAS_SSE2_1
    -- Performing Test C_HAS_SSE2_1 - Success
    -- Performing Test C_HAS_SSE3_1
    -- Performing Test C_HAS_SSE3_1 - Failed
    -- Performing Test C_HAS_SSE3_2
    -- Performing Test C_HAS_SSE3_2 - Success
    -- Performing Test C_HAS_SSE4_1_1
    -- Performing Test C_HAS_SSE4_1_1 - Failed
    -- Performing Test C_HAS_SSE4_1_2
    -- Performing Test C_HAS_SSE4_1_2 - Success
    -- Performing Test C_HAS_SSE4_2_1
    -- Performing Test C_HAS_SSE4_2_1 - Failed
    -- Performing Test C_HAS_SSE4_2_2
    -- Performing Test C_HAS_SSE4_2_2 - Success
    -- Performing Test C_HAS_AVX_1
    -- Performing Test C_HAS_AVX_1 - Failed
    -- Performing Test C_HAS_AVX_2
    -- Performing Test C_HAS_AVX_2 - Success
    -- Performing Test C_HAS_AVX2_1
    -- Performing Test C_HAS_AVX2_1 - Failed
    -- Performing Test C_HAS_AVX2_2
    -- Performing Test C_HAS_AVX2_2 - Success
    -- Performing Test CXX_HAS_SSE1_1
    -- Performing Test CXX_HAS_SSE1_1 - Success
    -- Performing Test CXX_HAS_SSE2_1
    -- Performing Test CXX_HAS_SSE2_1 - Success
    -- Performing Test CXX_HAS_SSE3_1
    -- Performing Test CXX_HAS_SSE3_1 - Failed
    -- Performing Test CXX_HAS_SSE3_2
    -- Performing Test CXX_HAS_SSE3_2 - Success
    -- Performing Test CXX_HAS_SSE4_1_1
    -- Performing Test CXX_HAS_SSE4_1_1 - Failed
    -- Performing Test CXX_HAS_SSE4_1_2
    -- Performing Test CXX_HAS_SSE4_1_2 - Success
    -- Performing Test CXX_HAS_SSE4_2_1
    -- Performing Test CXX_HAS_SSE4_2_1 - Failed
    -- Performing Test CXX_HAS_SSE4_2_2
    -- Performing Test CXX_HAS_SSE4_2_2 - Success
    -- Performing Test CXX_HAS_AVX_1
    -- Performing Test CXX_HAS_AVX_1 - Failed
    -- Performing Test CXX_HAS_AVX_2
    -- Performing Test CXX_HAS_AVX_2 - Success
    -- Performing Test CXX_HAS_AVX2_1
    -- Performing Test CXX_HAS_AVX2_1 - Failed
    -- Performing Test CXX_HAS_AVX2_2
    -- Performing Test CXX_HAS_AVX2_2 - Success
    -- SSE2 Found
    -- SSE3 Found
    -- AVX Found
    -- AVX2 Found
    -- Performing Test HAS_C11_ATOMICS
    -- Performing Test HAS_C11_ATOMICS - Failed
    -- Performing Test HAS_MSC_ATOMICS
    -- Performing Test HAS_MSC_ATOMICS - Failed
    -- Performing Test HAS_GCC_ATOMICS
    -- Performing Test HAS_GCC_ATOMICS - Success
    -- TH_SO_VERSION: 0
    -- Atomics: using GCC intrinsics
    -- Looking for sys/types.h
    -- Looking for sys/types.h - found
    -- Looking for stdint.h
    -- Looking for stdint.h - found
    -- Looking for stddef.h
    -- Looking for stddef.h - found
    -- Check size of void*
    -- Check size of void* - done
    -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - pthread - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - pthread - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - pthread - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_gf_lp64 - mkl_sequential - mkl_core - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf - mkl_sequential - mkl_core - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_gf_lp64 - mkl_sequential - mkl_core - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf - mkl_sequential - mkl_core - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - pthread - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - pthread - m]
    --   Library mkl_gf_lp64: not found
    -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m]
    --   Library mkl_gf: not found
    -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - pthread - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
    --   Library mkl_intel_lp64: not found
    -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
    --   Library mkl_intel: not found
    -- Checking for [mkl - guide - pthread - m]
    --   Library mkl: not found
    -- MKL library not found
    -- Checking for [openblas]
    --   Library openblas: /usr/lib/libopenblas.so
    -- Looking for sgemm_
    -- Looking for sgemm_ - found
    -- Performing Test BLAS_F2C_DOUBLE_WORKS
    -- Performing Test BLAS_F2C_DOUBLE_WORKS - Failed
    -- Performing Test BLAS_F2C_FLOAT_WORKS
    -- Performing Test BLAS_F2C_FLOAT_WORKS - Success
    -- Performing Test BLAS_USE_CBLAS_DOT
    -- Performing Test BLAS_USE_CBLAS_DOT - Success
    -- Found a library with BLAS API (open).
    -- Looking for cheev_
    -- Looking for cheev_ - found
    -- Found a library with LAPACK API. (open)
    -- Looking for clock_gettime in rt
    -- Looking for clock_gettime in rt - found
    -- Looking for mmap
    -- Looking for mmap - found
    -- Looking for shm_open
    -- Looking for shm_open - found
    -- Looking for shm_unlink
    -- Looking for shm_unlink - found
    -- Looking for malloc_usable_size
    -- Looking for malloc_usable_size - found
    -- Performing Test C_HAS_THREAD
    -- Performing Test C_HAS_THREAD - Success
    CMake Deprecation Warning at lib/luaT/CMakeLists.txt:3 (CMAKE_POLICY):
      The OLD behavior for policy CMP0026 will be removed from a future version
      of CMake.

      The cmake-policies(7) manual explains that the OLD behaviors of all
      policies are deprecated and that a policy should be set to OLD only under
      specific short-term circumstances.  Projects should be ported to the NEW
      behavior and not rely on setting a policy to OLD.


    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/pkg/torch/build
    Scanning dependencies of target luaT
    Scanning dependencies of target TH
    [  2%] Building C object lib/luaT/CMakeFiles/luaT.dir/luaT.c.o
    [  5%] Building C object lib/TH/CMakeFiles/TH.dir/THGeneral.c.o
    [ 10%] Building C object lib/TH/CMakeFiles/TH.dir/THAllocator.c.o
    [ 10%] Building C object lib/TH/CMakeFiles/TH.dir/THHalf.c.o
    [ 12%] Building C object lib/TH/CMakeFiles/TH.dir/THSize.c.o
    [ 15%] Building C object lib/TH/CMakeFiles/TH.dir/THStorage.c.o
    [ 17%] Building C object lib/TH/CMakeFiles/TH.dir/THTensor.c.o
    [ 20%] Building C object lib/TH/CMakeFiles/TH.dir/THBlas.c.o
    [ 23%] Building C object lib/TH/CMakeFiles/TH.dir/THLapack.c.o
    [ 25%] Building C object lib/TH/CMakeFiles/TH.dir/THLogAdd.c.o
    [ 28%] Building C object lib/TH/CMakeFiles/TH.dir/THRandom.c.o
    [ 30%] Building C object lib/TH/CMakeFiles/TH.dir/THFile.c.o
    [ 33%] Building C object lib/TH/CMakeFiles/TH.dir/THDiskFile.c.o
    [ 35%] Building C object lib/TH/CMakeFiles/TH.dir/THMemoryFile.c.o
    [ 38%] Building C object lib/TH/CMakeFiles/TH.dir/THAtomic.c.o
    [ 41%] Building C object lib/TH/CMakeFiles/TH.dir/THVector.c.o
    [ 43%] Building C object lib/TH/CMakeFiles/TH.dir/generic/simd/convolve.c.o
    [ 48%] Building C object lib/TH/CMakeFiles/TH.dir/generic/simd/convolve5x5_sse.c.o
    [ 48%] Linking C shared library libluaT.so
    [ 48%] Built target luaT
    [ 51%] Building C object lib/TH/CMakeFiles/TH.dir/vector/AVX.c.o
    [ 53%] Building C object lib/TH/CMakeFiles/TH.dir/generic/simd/convolve5x5_avx.c.o
    [ 56%] Building C object lib/TH/CMakeFiles/TH.dir/vector/AVX2.c.o
    [ 58%] Linking C shared library libTH.so
    [ 58%] Built target TH
    [ 61%] Generating TensorMath.c
    [ 64%] Generating random.c
    Scanning dependencies of target torch
    [ 66%] Building C object CMakeFiles/torch.dir/DiskFile.c.o
    [ 69%] Building C object CMakeFiles/torch.dir/File.c.o
    [ 71%] Building C object CMakeFiles/torch.dir/MemoryFile.c.o
    [ 74%] Building C object CMakeFiles/torch.dir/PipeFile.c.o
    [ 76%] Building C object CMakeFiles/torch.dir/Storage.c.o
    [ 79%] Building C object CMakeFiles/torch.dir/Tensor.c.o
    [ 82%] Building C object CMakeFiles/torch.dir/Timer.c.o
    [ 84%] Building C object CMakeFiles/torch.dir/utils.c.o
    [ 87%] Building C object CMakeFiles/torch.dir/init.c.o
    [ 92%] Building C object CMakeFiles/torch.dir/TensorOperator.c.o
    [ 92%] Building C object CMakeFiles/torch.dir/TensorMath.c.o
    [ 94%] Building C object CMakeFiles/torch.dir/random.c.o
    [ 97%] Building C object CMakeFiles/torch.dir/Generator.c.o
    [100%] Linking C shared module libtorch.so
    [100%] Built target torch
    cd build && make install
    [  5%] Built target luaT
    [ 58%] Built target TH
    [100%] Built target torch
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/TorchExports.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/TorchExports-release.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/TorchConfig.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/TorchWrap.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/TorchPathsInit.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/TorchPackage.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lib/libtorch.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lib/libtorch.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/File.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/Tensor.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/CmdLine.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/FFInterface.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/Tester.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/TestSuite.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/paths.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/test.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/README.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/timer.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/pipefile.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/serialization.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/cmdline.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/random.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/diskfile.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/gather.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/utility.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/index.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/storage.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/tester.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/tensor.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/memoryfile.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/file.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/torch/scm-1/lua/torch/doc/maths.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libTH.so.0
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libTH.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/libTH.so.0" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/TH.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THAllocator.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THMath.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THBlas.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THDiskFile.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THFile.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THFilePrivate.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGeneral.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateAllTypes.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateDoubleType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateFloatType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateHalfType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateLongType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateIntType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateShortType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateCharType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateByteType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateFloatTypes.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THGenerateIntTypes.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THLapack.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THLogAdd.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THMemoryFile.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THRandom.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THSize.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THStorage.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THTensor.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THTensorApply.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THTensorDimApply.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THTensorMacros.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THVector.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THAtomic.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/THHalf.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/vector/AVX.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/vector/AVX2.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THBlas.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THBlas.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THLapack.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THLapack.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THStorage.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THStorage.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THStorageCopy.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THStorageCopy.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensor.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensor.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorConv.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorConv.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorCopy.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorCopy.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorLapack.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorLapack.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorMath.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorMath.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorRandom.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THTensorRandom.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THVectorDispatch.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/TH/generic/THVector.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/THConfig.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libluaT.so.0
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libluaT.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/libluaT.so.0" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/luaT.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/share/cmake/torch/luaTConfig.cmake
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    torch scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    dok scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c utils.c -o utils.o
    gcc -shared -o treplutils.so -L/home/gbt/MVIG-SJTU/distro/install/lib utils.o
    gcc -O2 -fPIC -I/home/gbt/MVIG-SJTU/distro/install/include -c readline.c -o readline.o
    gcc -shared -o readline.so -L/home/gbt/MVIG-SJTU/distro/install/lib readline.o -lreadline
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    trepl scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DLUALIB= -DCMAKE_BUILD_TYPE=Release  -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/sys/1.1-0" && make
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/pkg/sys/build
    Scanning dependencies of target sys
    [ 50%] Building C object CMakeFiles/sys.dir/sys.c.o
    [100%] Linking C shared module libsys.so
    [100%] Built target sys
    cd build && make install
    [100%] Built target sys
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/sys/1.1-0/lib/libsys.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/sys/1.1-0/lib/libsys.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/sys/1.1-0/lua/sys/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/sys/1.1-0/lua/sys/colors.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/sys/1.1-0/lua/sys/fpath.lua
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    sys 1.1-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    xlua 1.0-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    moses 1.6.1-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: MIT <http://www.opensource.org/licenses/mit-license.php>)

    cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1"  -DLUA_INCDIR="/home/gbt/MVIG-SJTU/distro/install/include" -DLUA_LIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib" && make

    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- TH_LIBRARIES: TH
    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:200 (if):
      Policy CMP0054 is not set: Only interpret if() arguments as variables or
      keywords when unquoted.  Run "cmake --help-policy CMP0054" for policy
      details.  Use the cmake_policy command to set the policy and suppress this
      warning.

      Quoted variables like "c" will no longer be dereferenced when the policy is
      set to NEW.  Since the policy is not set the OLD behavior will be used.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:324 (_OPENMP_GET_FLAGS)
      lib/THNN/CMakeLists.txt:52 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:277 (if):
      if given arguments:

        "TRUE"

      An argument named "TRUE" appears in a conditional statement.  Policy
      CMP0012 is not set: if() recognizes numbers and boolean constants.  Run
      "cmake --help-policy CMP0012" for policy details.  Use the cmake_policy
      command to set the policy and suppress this warning.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:380 (_OPENMP_GET_SPEC_DATE)
      lib/THNN/CMakeLists.txt:52 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Found OpenMP_C: -fopenmp (found version "1.0")
    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:277 (if):
      if given arguments:

        "TRUE"

      An argument named "TRUE" appears in a conditional statement.  Policy
      CMP0012 is not set: if() recognizes numbers and boolean constants.  Run
      "cmake --help-policy CMP0012" for policy details.  Use the cmake_policy
      command to set the policy and suppress this warning.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:380 (_OPENMP_GET_SPEC_DATE)
      lib/THNN/CMakeLists.txt:52 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Found OpenMP_CXX: -fopenmp (found version "1.0")
    -- Compiling with OpenMP support
    -- Configuring done
    -- Generating done
    CMake Warning:
      Manually-specified variables were not used by the project:

        LUA_INCDIR
        LUA_LIBDIR


    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/extra/nn/build
    Scanning dependencies of target THNN
    [ 50%] Building C object lib/THNN/CMakeFiles/THNN.dir/init.c.o
    [100%] Linking C shared module libTHNN.so
    [100%] Built target THNN
    cd build && make install
    [100%] Built target THNN
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Abs.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/AbsCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Add.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/AddConstant.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/BCECriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/BatchNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Bilinear.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Bottle.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CAdd.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CAddTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CAddTensorTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CDivTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CMaxTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CMinTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CMul.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CMulTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CReLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CSubTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Clamp.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ClassNLLCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ClassSimplexCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Collapse.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Concat.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ConcatTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Constant.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Container.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Contiguous.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Convert.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Copy.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Cosine.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CosineDistance.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CosineEmbeddingCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Criterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CriterionTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/CrossEntropyCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Decorator.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/DepthConcat.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/DistKLDivCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/DistanceRatioCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/DontCast.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/DotProduct.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Dropout.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ELU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ErrorMessages.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Euclidean.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Exp.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/FlattenTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/GPU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/GatedLinearUnit.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/GradientReversal.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/HardShrink.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/HardTanh.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/HingeEmbeddingCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Identity.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Index.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/IndexLinear.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Jacobian.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/JoinTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Kmeans.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/L1Cost.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/L1HingeEmbeddingCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/L1Penalty.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/LayerNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/LeakyReLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Linear.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/LinearWeightNorm.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Log.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/LogSigmoid.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/LogSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/LookupTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MM.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MSECriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MV.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MapTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MarginCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MarginRankingCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MaskedSelect.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Max.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Maxout.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Mean.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Min.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MixtureTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Module.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ModuleCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Mul.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MulConstant.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MultiCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MultiLabelMarginCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MultiLabelSoftMarginCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/MultiMarginCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/NaN.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Narrow.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/NarrowTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Normalize.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/OneHot.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/PReLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Padding.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/PairwiseDistance.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Parallel.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ParallelCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ParallelTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/PartialLinear.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/PixelShuffle.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Power.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/PrintSize.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Profile.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/RReLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ReLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ReLU6.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Replicate.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Reshape.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Select.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SelectTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Sequential.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Sigmoid.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SmoothL1Criterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SoftMarginCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SoftMin.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SoftPlus.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SoftShrink.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SoftSign.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SparseJacobian.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SparseLinear.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialAdaptiveAveragePooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialAdaptiveMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialAutoCropMSECriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialAveragePooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialBatchNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialClassNLLCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialContrastiveNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialConvolutionLocal.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialConvolutionMM.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialConvolutionMap.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialCrossMapLRN.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialDepthWiseConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialDilatedConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialDilatedMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialDivisiveNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialDropout.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialFractionalMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialFullConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialFullConvolutionMap.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialLPPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialLogSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialMaxUnpooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialReflectionPadding.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialReplicationPadding.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialSubSampling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialSubtractiveNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialUpSamplingBilinear.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialUpSamplingNearest.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SpatialZeroPadding.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/SplitTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Sqrt.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Square.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Squeeze.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/StochasticGradient.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Sum.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/THNN.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/THNN_h.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Tanh.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/TanhShrink.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/TemporalConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/TemporalDynamicKMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/TemporalMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/TemporalRowConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/TemporalSubSampling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Threshold.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Transpose.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/Unsqueeze.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/View.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricAveragePooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricBatchNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricDilatedConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricDilatedMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricDropout.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricFractionalMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricFullConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricMaxUnpooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/VolumetricReplicationPadding.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/WeightNorm.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/WeightedEuclidean.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/WeightedMSECriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/WhiteNoise.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ZeroGrad.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ZipTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/ZipTableOneToMany.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/hessian.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/test.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/utils.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/convolution.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/index.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/simple.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/overview.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/training.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/transfer.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/module.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/criterion.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/table.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/containers.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/square.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/sigmoid.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/softplus.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/softmax.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/hshrink.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/lena.jpg
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/prelu.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/rrelu.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/power.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/exp.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/softmin.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/tanh.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/sshrink.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/sqrt.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/relu6.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/elu.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/softsign.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/logsoftmax.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/htanh.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/sigmmoid.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/abs.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/relu.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/lenap.jpg
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/image/logsigmoid.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/doc/testing.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lua/nn/README.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lib/libTHNN.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nn/scm-1/lib/libTHNN.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THNN/THNN.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THNN/generic/THNN.h
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    nn scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/graph/scm-1" && make
       
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/extra/graph/build
    cd build && make install
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/graph/scm-1/lua/graph/Edge.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/graph/scm-1/lua/graph/Node.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/graph/scm-1/lua/graph/graphviz.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/graph/scm-1/lua/graph/init.lua
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    graph scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: UNKNOWN)

    cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1" && make
       
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/extra/nngraph/build
    cd build && make install
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/JustElement.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/JustTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/ModuleFromCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/gmodule.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/graphinspecting.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/nest.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/nesting.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/node.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/simple_print.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nngraph/scm-1/lua/nngraph/utils.lua
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    nngraph scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: UNKNOWN)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DLUALIB= -DLUA_INCDIR="/home/gbt/MVIG-SJTU/distro/install/include" -DLUA_LIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib"  -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0" && make
       
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Found JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so  
    -- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.2.8")
    -- Found PNG: /usr/lib/x86_64-linux-gnu/libpng.so (found version "1.2.54")
    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:200 (if):
      Policy CMP0054 is not set: Only interpret if() arguments as variables or
      keywords when unquoted.  Run "cmake --help-policy CMP0054" for policy
      details.  Use the cmake_policy command to set the policy and suppress this
      warning.

      Quoted variables like "c" will no longer be dereferenced when the policy is
      set to NEW.  Since the policy is not set the OLD behavior will be used.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:324 (_OPENMP_GET_FLAGS)
      CMakeLists.txt:28 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:277 (if):
      if given arguments:

        "TRUE"

      An argument named "TRUE" appears in a conditional statement.  Policy
      CMP0012 is not set: if() recognizes numbers and boolean constants.  Run
      "cmake --help-policy CMP0012" for policy details.  Use the cmake_policy
      command to set the policy and suppress this warning.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:380 (_OPENMP_GET_SPEC_DATE)
      CMakeLists.txt:28 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Found OpenMP_C: -fopenmp (found version "1.0")
    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:277 (if):
      if given arguments:

        "TRUE"

      An argument named "TRUE" appears in a conditional statement.  Policy
      CMP0012 is not set: if() recognizes numbers and boolean constants.  Run
      "cmake --help-policy CMP0012" for policy details.  Use the cmake_policy
      command to set the policy and suppress this warning.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:380 (_OPENMP_GET_SPEC_DATE)
      CMakeLists.txt:28 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Found OpenMP_CXX: -fopenmp (found version "1.0")
    -- Compiling with OpenMP support
    -- Looking for jpeg_mem_src
    -- Looking for jpeg_mem_src - found
    -- Looking for jpeg_mem_dest
    -- Looking for jpeg_mem_dest - found
    -- Configuring done
    -- Generating done
    CMake Warning:
      Manually-specified variables were not used by the project:

        LUA_INCDIR
        LUA_LIBDIR


    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/pkg/image/build
    Scanning dependencies of target jpeg
    [ 12%] Building C object CMakeFiles/jpeg.dir/jpeg.c.o
    [ 25%] Linking C shared module libjpeg.so
    [ 25%] Built target jpeg
    Scanning dependencies of target ppm
    [ 37%] Building C object CMakeFiles/ppm.dir/ppm.c.o
    [ 50%] Linking C shared module libppm.so
    [ 50%] Built target ppm
    Scanning dependencies of target lua_png
    [ 62%] Building C object CMakeFiles/lua_png.dir/png.c.o
    [ 75%] Linking C shared module liblua_png.so
    [ 75%] Built target lua_png
    Scanning dependencies of target image
    [ 87%] Building C object CMakeFiles/image.dir/image.c.o
    [100%] Linking C shared module libimage.so
    [100%] Built target image
    cd build && make install
    [ 25%] Built target jpeg
    [ 50%] Built target ppm
    [ 75%] Built target lua_png
    [100%] Built target image
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lib/libppm.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lib/libppm.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lib/libjpeg.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lib/libjpeg.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lib/liblua_png.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lib/liblua_png.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lib/libimage.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lib/libimage.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/win.ui
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/test.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/grace_hopper_512.jpg
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/bmp-without-ext
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/corrupt-ihdr.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/P5.pgm
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/gray16-1x2.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/rgb2x1.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/P2.pgm
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/rgb16-2x1.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/foobar.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/P6.ppm
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/gray3x1.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/rectangle.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/fabio.jpg
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/grace_hopper_512.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/P4.pbm
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/assets/fabio.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/image/1.1.alpha-0/lua/image/README.md
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    image 1.1.alpha-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0" && make
       
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/pkg/optim/build
    cd build && make install
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/ConfusionMatrix.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/Logger.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/adadelta.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/adagrad.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/adam.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/adamax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/asgd.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/cg.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/checkgrad.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/cmaes.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/de.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/fista.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/lbfgs.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/lswolfe.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/nag.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/polyinterp.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/rmsprop.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/rprop.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/sgd.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc/logger.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc/logger_plot.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc/intro.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc/algos.md
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc/image
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc/image/parameterflattening.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc/image/parameterflattening.svg.png
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/doc/image/parameterflattening.svg
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/optim/1.0.5-0/lua/optim/README.md
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    optim 1.0.5-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Found CUDA on your machine. Installing CUDA packages
    Warning: unmatched variable LUALIB

    jopts=$(getconf _NPROCESSORS_CONF)

    echo "Building on $jopts cores"
    cmake -E make_directory build && cd build && cmake .. -DLUALIB= -DLUA_INCDIR=/home/gbt/MVIG-SJTU/distro/install/include -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cutorch/scm-1" && make -j$jopts install

    Building on 8 cores
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Found CUDA: /usr/local/cuda (found suitable version "8.0", minimum required is "6.5")
    -- Removing -DNDEBUG from compile flags
    -- TH_LIBRARIES: TH
    -- MAGMA not found. Compiling without MAGMA support
    -- Autodetected CUDA architecture(s): 6.1
    -- got cuda version 8.0
    -- Found CUDA with FP16 support, compiling with torch.CudaHalfTensor
    -- CUDA_NVCC_FLAGS: -gencode;arch=compute_61,code=sm_61;-DCUDA_HAS_FP16=1
    -- THC_SO_VERSION: 0
    -- Performing Test HAS_LUAL_SETFUNCS
    -- Performing Test HAS_LUAL_SETFUNCS - Failed
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/extra/cutorch/build
    [  1%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCHalf.cu.o
    [  2%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCReduceApplyUtils.cu.o
    [  3%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCBlas.cu.o
    [  4%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCSleep.cu.o
    [  5%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensor.cu.o
    [  6%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCStorage.cu.o
    [  8%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorCopy.cu.o
    [  8%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCStorageCopy.cu.o
    [ 10%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorMath.cu.o
    [ 11%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorMath2.cu.o
    [ 12%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorMathBlas.cu.o
    [ 13%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorMathMagma.cu.o
    [ 14%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorMathPairwise.cu.o
    [ 15%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorMathReduce.cu.o
    [ 16%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorMathScan.cu.o
    [ 17%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorIndex.cu.o
    [ 18%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorConv.cu.o
    [ 20%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorRandom.cu.o
    [ 21%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorScatterGather.cu.o
    [ 22%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorTopK.cu.o
    [ 23%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorSort.cu.o
    [ 24%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorTypeUtils.cu.o
    [ 25%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCSortUtils.cu.o
    [ 26%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/THC_generated_THCTensorMode.cu.o
    [ 27%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorSortByte.cu.o
    [ 28%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTByte.cu.o
    [ 30%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseByte.cu.o
    [ 31%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareByte.cu.o
    [ 32%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceByte.cu.o
    [ 33%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedByte.cu.o
    [ 34%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorSortChar.cu.o
    [ 35%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTChar.cu.o
    [ 36%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseChar.cu.o
    [ 37%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareChar.cu.o
    [ 38%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceChar.cu.o
    [ 40%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedChar.cu.o
    [ 41%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorSortShort.cu.o
    [ 42%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTShort.cu.o
    [ 43%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseShort.cu.o
    [ 44%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareShort.cu.o
    [ 45%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceShort.cu.o
    [ 46%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedShort.cu.o
    [ 47%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorSortInt.cu.o
    [ 48%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTInt.cu.o
    [ 50%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseInt.cu.o
    [ 51%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareInt.cu.o
    [ 52%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceInt.cu.o
    [ 53%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedInt.cu.o
    [ 54%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorSortLong.cu.o
    [ 55%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTLong.cu.o
    [ 56%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseLong.cu.o
    [ 57%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareLong.cu.o
    [ 58%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceLong.cu.o
    [ 60%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedLong.cu.o
    [ 61%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorSortHalf.cu.o
    [ 62%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTHalf.cu.o
    [ 63%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseHalf.cu.o
    [ 64%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareHalf.cu.o
    [ 65%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceHalf.cu.o
    [ 66%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedHalf.cu.o
    [ 67%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorSortFloat.cu.o
    [ 68%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTFloat.cu.o
    [ 70%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseFloat.cu.o
    [ 71%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareFloat.cu.o
    [ 72%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceFloat.cu.o
    [ 73%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedFloat.cu.o
    [ 74%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorSortDouble.cu.o
    [ 75%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareTDouble.cu.o
    [ 76%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathPointwiseDouble.cu.o
    [ 77%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathCompareDouble.cu.o
    [ 78%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMathReduceDouble.cu.o
    [ 80%] Building NVCC (Device) object lib/THC/CMakeFiles/THC.dir/generated/THC_generated_THCTensorMaskedDouble.cu.o
    Scanning dependencies of target THC
    [ 81%] Building CXX object lib/THC/CMakeFiles/THC.dir/THCCachingHostAllocator.cpp.o
    [ 82%] Building CXX object lib/THC/CMakeFiles/THC.dir/THCCachingAllocator.cpp.o
    [ 84%] Building C object lib/THC/CMakeFiles/THC.dir/THCStorageCopy.c.o
    [ 83%] Building C object lib/THC/CMakeFiles/THC.dir/THCGeneral.c.o
    [ 85%] Building CXX object lib/THC/CMakeFiles/THC.dir/THCStream.cpp.o
    [ 86%] Building C object lib/THC/CMakeFiles/THC.dir/THCTensor.c.o
    [ 87%] Building C object lib/THC/CMakeFiles/THC.dir/THCTensorCopy.c.o
    [ 88%] Building CXX object lib/THC/CMakeFiles/THC.dir/THCTensorRandom.cpp.o
    [ 90%] Building C object lib/THC/CMakeFiles/THC.dir/THCThreadLocal.c.o
    [ 91%] Linking CXX shared library libTHC.so
    [ 91%] Built target THC
    [ 92%] Generating TensorMath.c
    Scanning dependencies of target cutorch
    [ 94%] Building C object CMakeFiles/cutorch.dir/Storage.c.o
    [ 94%] Building C object CMakeFiles/cutorch.dir/init.c.o
    [ 95%] Building C object CMakeFiles/cutorch.dir/Tensor.c.o
    [ 96%] Building C object CMakeFiles/cutorch.dir/TensorMath.c.o
    [ 97%] Building C object CMakeFiles/cutorch.dir/TensorOperator.c.o
    [ 98%] Building C object CMakeFiles/cutorch.dir/torch/utils.c.o
    [100%] Linking C shared module libcutorch.so
    [100%] Built target cutorch
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cutorch/scm-1/lib/libcutorch.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cutorch/scm-1/lib/libcutorch.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib:/usr/local/cuda/lib64"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cutorch/scm-1/lua/cutorch/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cutorch/scm-1/lua/cutorch/Tensor.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cutorch/scm-1/lua/cutorch/FFI.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cutorch/scm-1/lua/cutorch/test.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libTHC.so.0
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libTHC.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/libTHC.so.0" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib:/usr/local/cuda/lib64"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THC.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGeneral.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCBlas.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCSleep.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCStorage.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCStorageCopy.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCStream.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCThreadLocal.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensor.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorCopy.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorRandom.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorMath.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorConv.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCApply.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCReduce.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCReduceAll.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCReduceApplyUtils.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCAsmUtils.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCAtomics.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCScanUtils.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCSortUtils.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCAllocator.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCCachingAllocator.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCCachingHostAllocator.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCDeviceUtils.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCDeviceTensor.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCDeviceTensor-inl.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCDeviceTensorUtils.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCDeviceTensorUtils-inl.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateAllTypes.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateByteType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateCharType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateShortType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateIntType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateLongType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateHalfType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateFloatType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateFloatTypes.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCGenerateDoubleType.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCHalf.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCNumerics.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorSort.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorInfo.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorMathPointwise.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorTypeUtils.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorRandom.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorMathMagma.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCThrustAllocator.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorMode.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/THCTensorTopK.cuh
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCStorage.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCStorage.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCStorage.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensor.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensor.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensor.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCStorageCopy.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCStorageCopy.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCStorageCopy.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorCopy.c
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorCopy.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorCopy.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMasked.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMasked.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMath.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMath.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathBlas.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathBlas.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathCompare.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathCompare.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathCompareT.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathCompareT.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathMagma.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathMagma.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathPairwise.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathPairwise.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathPointwise.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathPointwise.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathReduce.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathReduce.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathScan.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMathScan.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorScatterGather.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorScatterGather.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorIndex.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorIndex.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorSort.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorSort.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCDeviceTensorUtils.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorRandom.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorRandom.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMode.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorMode.cu
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorTopK.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THC/generic/THCTensorTopK.cu
    cd build
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    cutorch scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DLUALIB= -DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1" && make -j$(getconf _NPROCESSORS_ONLN) install

    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Found CUDA: /usr/local/cuda (found suitable version "8.0", minimum required is "6.5")
    -- Removing -DNDEBUG from compile flags
    -- TH_LIBRARIES: TH
    -- THC_LIBRARIES: THC
    -- Autodetected CUDA architecture(s): 6.1
    -- Configuring done
    -- Generating done
    CMake Warning:
      Manually-specified variables were not used by the project:

        LUALIB


    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/extra/cunn/build
    [  2%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricUpSamplingTrilinear.cu.o
    [  2%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_Abs.cu.o
    [  4%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_AbsCriterion.cu.o
    [  5%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_BCECriterion.cu.o
    [  7%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_BatchNormalization.cu.o
    [ 10%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_DistKLDivCriterion.cu.o
    [ 10%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_ClassNLLCriterion.cu.o
    [ 11%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_ELU.cu.o
    [ 13%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_FusedRNNKernel.cu.o
    [ 14%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_GatedLinearUnit.cu.o
    [ 16%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_HardTanh.cu.o
    [ 17%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_IndexLinear.cu.o
    [ 19%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_L1Cost.cu.o
    [ 20%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_LeakyReLU.cu.o
    [ 22%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_LogSigmoid.cu.o
    [ 23%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_LogSoftMax.cu.o
    [ 25%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_LookupTable.cu.o
    [ 26%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_LookupTableBag.cu.o
    [ 27%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_MSECriterion.cu.o
    [ 29%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_MarginCriterion.cu.o
    [ 30%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_MultiLabelMarginCriterion.cu.o
    /home/gbt/MVIG-SJTU/distro/extra/cunn/lib/THCUNN/LookupTableBag.cu(18): warning: variable "MODE_SUM" was declared but never referenced

    [ 32%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_MultiMarginCriterion.cu.o
    [ 33%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_PReLU.cu.o
    /home/gbt/MVIG-SJTU/distro/extra/cunn/lib/THCUNN/LookupTableBag.cu(18): warning: variable "MODE_SUM" was declared but never referenced

    [ 35%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_RReLU.cu.o
    [ 36%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_Sigmoid.cu.o
    [ 38%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SmoothL1Criterion.cu.o
    [ 39%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SoftMarginCriterion.cu.o
    [ 41%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SoftMax.cu.o
    [ 42%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SoftPlus.cu.o
    [ 44%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SoftShrink.cu.o
    [ 45%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SparseLinear.cu.o
    [ 47%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialAdaptiveAveragePooling.cu.o
    [ 48%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialAdaptiveMaxPooling.cu.o
    [ 50%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialAveragePooling.cu.o
    [ 51%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialClassNLLCriterion.cu.o
    [ 52%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialConvolutionLocal.cu.o
    [ 55%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialCrossMapLRN.cu.o
    [ 55%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialConvolutionMM.cu.o
    [ 57%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialDepthWiseConvolution.cu.o
    [ 58%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialDilatedConvolution.cu.o
    [ 60%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialDilatedMaxPooling.cu.o
    [ 61%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialFractionalMaxPooling.cu.o
    [ 63%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialFullConvolution.cu.o
    [ 64%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialMaxPooling.cu.o
    [ 66%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialMaxUnpooling.cu.o
    [ 67%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialReflectionPadding.cu.o
    [ 69%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialReplicationPadding.cu.o
    [ 70%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialSubSampling.cu.o
    [ 72%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialUpSamplingBilinear.cu.o
    [ 73%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_SpatialUpSamplingNearest.cu.o
    [ 75%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_Sqrt.cu.o
    [ 76%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_Square.cu.o
    [ 77%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_Tanh.cu.o
    [ 79%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_TemporalConvolution.cu.o
    [ 80%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_TemporalMaxPooling.cu.o
    [ 82%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_TemporalRowConvolution.cu.o
    [ 83%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_Threshold.cu.o
    [ 85%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricAveragePooling.cu.o
    [ 86%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricConvolution.cu.o
    [ 88%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricDilatedConvolution.cu.o
    [ 89%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricDilatedMaxPooling.cu.o
    [ 91%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricFractionalMaxPooling.cu.o
    [ 92%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricFullConvolution.cu.o
    [ 94%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricMaxPooling.cu.o
    [ 95%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricMaxUnpooling.cu.o
    [ 97%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricReplicationPadding.cu.o
    [ 98%] Building NVCC (Device) object lib/THCUNN/CMakeFiles/THCUNN.dir/THCUNN_generated_VolumetricUpSamplingNearest.cu.o
    Scanning dependencies of target THCUNN
    [100%] Linking CXX shared module libTHCUNN.so
    [100%] Built target THCUNN
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lua/cunn/DataParallelTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lua/cunn/THCUNN.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lua/cunn/THCUNN_generic_h.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lua/cunn/THCUNN_h.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lua/cunn/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lua/cunn/test.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lua/cunn/test_DataParallelTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lib/libTHCUNN.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cunn/scm-1/lib/libTHCUNN.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib:/usr/local/cuda/lib64"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THCUNN/THCUNN.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/THCUNN/generic/THCUNN.h
    cd build
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    cunn scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Installing optional Torch packages
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    gnuplot scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    env scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DLUALIB=  -DLUA_INCDIR="/home/gbt/MVIG-SJTU/distro/install/include" -DLUA_LIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib" -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/" -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1" && make
       
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:200 (if):
      Policy CMP0054 is not set: Only interpret if() arguments as variables or
      keywords when unquoted.  Run "cmake --help-policy CMP0054" for policy
      details.  Use the cmake_policy command to set the policy and suppress this
      warning.

      Quoted variables like "c" will no longer be dereferenced when the policy is
      set to NEW.  Since the policy is not set the OLD behavior will be used.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:324 (_OPENMP_GET_FLAGS)
      CMakeLists.txt:10 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:277 (if):
      if given arguments:

        "TRUE"

      An argument named "TRUE" appears in a conditional statement.  Policy
      CMP0012 is not set: if() recognizes numbers and boolean constants.  Run
      "cmake --help-policy CMP0012" for policy details.  Use the cmake_policy
      command to set the policy and suppress this warning.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:380 (_OPENMP_GET_SPEC_DATE)
      CMakeLists.txt:10 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Found OpenMP_C: -fopenmp (found version "1.0")
    CMake Warning (dev) at /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:277 (if):
      if given arguments:

        "TRUE"

      An argument named "TRUE" appears in a conditional statement.  Policy
      CMP0012 is not set: if() recognizes numbers and boolean constants.  Run
      "cmake --help-policy CMP0012" for policy details.  Use the cmake_policy
      command to set the policy and suppress this warning.
    Call Stack (most recent call first):
      /opt/cmake-3.9.1/share/cmake-3.9/Modules/FindOpenMP.cmake:380 (_OPENMP_GET_SPEC_DATE)
      CMakeLists.txt:10 (FIND_PACKAGE)
    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Found OpenMP_CXX: -fopenmp (found version "1.0")
    -- OpenMP Found with compiler flag : -fopenmp
    -- Configuring done
    -- Generating done
    CMake Warning:
      Manually-specified variables were not used by the project:

        LUA_INCDIR
        LUA_LIBDIR


    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/extra/nnx/build
    Scanning dependencies of target nnx
    [ 50%] Building C object CMakeFiles/nnx.dir/init.c.o
    [100%] Linking C shared module libnnx.so
    [100%] Built target nnx
    cd build && make install
    [100%] Built target nnx
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lib/libnnx.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lib/libnnx.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/Balance.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/CTCCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/DataList.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/DataSet.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/DataSetLabelMe.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/DataSetSamplingPascal.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/DistMarginCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/DistNLLCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/FunctionWrapper.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/LA.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/Minus.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/MultiSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/PixelSort.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/Probe.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/PullTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/PushTable.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/QDRiemaNNLinear.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SaturatedLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SoftMaxForest.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SoftMaxTree.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SparseCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialClassifier.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialColorTransform.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialDownSampling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialFovea.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialGraph.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialLinear.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialMatching.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialMaxSampling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialPadding.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialPyramid.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialRadialMatching.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialReSampling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialReSamplingEx.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialRecursiveFovea.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialSparseCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SpatialUpSampling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/SuperCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/Tic.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/Toc.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/TreeNLLCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/test-all.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/nnx/0.1-1/lua/nnx/test-omp.lua
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    nnx 0.1-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DLUA=/home/gbt/MVIG-SJTU/distro/install/bin/luajit -DLUALIB= -DLUA_BINDIR="/home/gbt/MVIG-SJTU/distro/install/bin" -DLUA_INCDIR="/home/gbt/MVIG-SJTU/distro/install/include" -DLUA_LIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib" -DLUADIR="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua" -DLIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib" -DCONFDIR="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/conf" && make

    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    CMake Deprecation Warning at CMakeLists.txt:16 (CMAKE_POLICY):
      The OLD behavior for policy CMP0026 will be removed from a future version
      of CMake.

      The cmake-policies(7) manual explains that the OLD behaviors of all
      policies are deprecated and that a policy should be set to OLD only under
      specific short-term circumstances.  Projects should be ported to the NEW
      behavior and not rely on setting a policy to OLD.


    -- Looking for Q_WS_X11
    -- Looking for Q_WS_X11 - found
    -- Looking for Q_WS_WIN
    -- Looking for Q_WS_WIN - not found
    -- Looking for Q_WS_QWS
    -- Looking for Q_WS_QWS - not found
    -- Looking for Q_WS_MAC
    -- Looking for Q_WS_MAC - not found
    -- Found Qt4: /usr/bin/qmake (found suitable version "4.8.7", minimum required is "4.3.0")
    -- Lua: using information from luarocks
    -- Lua library guess (no info from luarocks): /home/gbt/MVIG-SJTU/distro/install/lib/libluajit.so
    -- Looking for luaJIT_setmode in /home/gbt/MVIG-SJTU/distro/install/lib/libluajit.so
    -- Looking for luaJIT_setmode in /home/gbt/MVIG-SJTU/distro/install/lib/libluajit.so - found
    -- Lua found /home/gbt/MVIG-SJTU/distro/install/bin/luajit
    -- Found readline library
    -- Looking for rl_completion_matches
    -- Looking for rl_completion_matches - found
    -- Looking for include file fcntl.h
    -- Looking for include file fcntl.h - found
    -- Looking for include file pthread.h
    -- Looking for include file pthread.h - found
    -- Looking for include file signal.h
    -- Looking for include file signal.h - found
    -- Looking for include file unistd.h
    -- Looking for include file unistd.h - found
    -- Looking for include file errno.h
    -- Looking for include file errno.h - found
    -- Looking for include file sys/select.h
    -- Looking for include file sys/select.h - found
    -- Looking for include file sys/time.h
    -- Looking for include file sys/time.h - found
    -- Looking for include file sys/types.h
    -- Looking for include file sys/types.h - found
    -- Looking for isatty
    -- Looking for isatty - found
    -- Looking for sigprocmask
    -- Looking for sigprocmask - found
    -- Looking for sigaction
    -- Looking for sigaction - found
    -- Looking for signal
    -- Looking for signal - found
    -- Looking for pthread_sigmask
    -- Looking for pthread_sigmask - not found
    -- Looking for XInitThreads
    -- Looking for XInitThreads - not found
    -- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so
    -- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so - found
    -- Looking for gethostbyname
    -- Looking for gethostbyname - found
    -- Looking for connect
    -- Looking for connect - found
    -- Looking for remove
    -- Looking for remove - found
    -- Looking for shmat
    -- Looking for shmat - found
    -- Looking for IceConnectionNumber in ICE
    -- Looking for IceConnectionNumber in ICE - found
    -- Found X11: /usr/lib/x86_64-linux-gnu/libX11.so
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/exe/qtlua/build
    [  1%] Generating moc_qtluaengine.cxx
    [  2%] Generating qtluaengine.moc
    Scanning dependencies of target libqtlua
    [  3%] Building CXX object qtlua/CMakeFiles/libqtlua.dir/qtluautils.cpp.o
    [  4%] Building CXX object qtlua/CMakeFiles/libqtlua.dir/qtluaengine.cpp.o
    [  5%] Building CXX object qtlua/CMakeFiles/libqtlua.dir/moc_qtluaengine.cxx.o
    [  6%] Linking CXX shared library libqtlua.so
    [  6%] Built target libqtlua
    [  7%] Generating moc_qluaconsole.cxx
    [  8%] Generating qrc_qlua.cxx
    [  9%] Generating qluaapplication.moc
    [ 10%] Generating qluaconsole_unix.moc
    [ 11%] Generating moc_qluaapplication.cxx
    Scanning dependencies of target libqlua
    [ 13%] Building CXX object qlua/CMakeFiles/libqlua.dir/qluaapplication.cpp.o
    [ 14%] Building CXX object qlua/CMakeFiles/libqlua.dir/qluaconsole_unix.cpp.o
    /home/gbt/MVIG-SJTU/distro/exe/qtlua/qlua/qluaconsole_unix.cpp: In member function ‘void QLuaConsole::Private::command(Command)’:
    /home/gbt/MVIG-SJTU/distro/exe/qtlua/qlua/qluaconsole_unix.cpp:774:46: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’, declared with attribute warn_unused_result [-Wunused-result]
       (void) ::write(commandPipe[1], &command, 1);
                                                  ^
    [ 15%] Building CXX object qlua/CMakeFiles/libqlua.dir/moc_qluaapplication.cxx.o
    [ 16%] Building CXX object qlua/CMakeFiles/libqlua.dir/qrc_qlua.cxx.o
    [ 17%] Building CXX object qlua/CMakeFiles/libqlua.dir/moc_qluaconsole.cxx.o
    [ 18%] Linking CXX shared library libqlua.so
    [ 18%] Built target libqlua
    Scanning dependencies of target qlua
    [ 19%] Building CXX object qlua/CMakeFiles/qlua.dir/qlua.cpp.o
    [ 20%] Linking CXX executable qlua
    [ 20%] Built target qlua
    Scanning dependencies of target libqtcore
    [ 21%] Building CXX object packages/qtcore/CMakeFiles/libqtcore.dir/qtcore.cpp.o
    [ 22%] Linking CXX shared module libqtcore.so
    [ 22%] Built target libqtcore
    [ 23%] Generating moc_qtluagui.cxx
    Scanning dependencies of target libqtgui
    [ 25%] Building CXX object packages/qtgui/CMakeFiles/libqtgui.dir/qtgui.cpp.o
    [ 26%] Building CXX object packages/qtgui/CMakeFiles/libqtgui.dir/qtluagui.cpp.o
    [ 27%] Building CXX object packages/qtgui/CMakeFiles/libqtgui.dir/moc_qtluagui.cxx.o
    [ 28%] Linking CXX shared module libqtgui.so
    [ 28%] Built target libqtgui
    [ 29%] Generating moc_qluamode.cxx
    [ 30%] Generating qrc_qtide.cxx
    [ 31%] Generating ui_qluagotodialog.h
    [ 32%] Generating ui_qluafinddialog.h
    [ 33%] Generating ui_qluareplacedialog.h
    [ 34%] Generating qluatextedit.moc
    [ 35%] Generating qluaide.moc
    [ 36%] Generating qluamainwindow.moc
    [ 38%] Generating qluabrowser.moc
    [ 39%] Generating qluaeditor.moc
    [ 40%] Generating qluasdimain.moc
    [ 41%] Generating qluamdimain.moc
    [ 42%] Generating qluamode.moc
    [ 43%] Generating qluamode_txt.moc
    [ 44%] Generating qluamode_hlp.moc
    [ 45%] Generating qluamode_lua.moc
    [ 46%] Generating qluamode_c.moc
    [ 47%] Generating moc_qluatextedit.cxx
    [ 48%] Generating moc_qluaide.cxx
    [ 50%] Generating moc_qluamainwindow.cxx
    [ 51%] Generating moc_qluabrowser.cxx
    [ 52%] Generating moc_qluaeditor.cxx
    [ 53%] Generating moc_qluasdimain.cxx
    [ 54%] Generating moc_qluamdimain.cxx
    Scanning dependencies of target libqtide
    [ 55%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qtide.cpp.o
    [ 56%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluatextedit.cpp.o
    [ 57%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluaide.cpp.o
    [ 58%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluamainwindow.cpp.o
    [ 59%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluabrowser.cpp.o
    [ 60%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluaeditor.cpp.o
    [ 61%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluasdimain.cpp.o
    [ 63%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluamdimain.cpp.o
    [ 64%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluamode.cpp.o
    [ 65%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluamode_txt.cpp.o
    [ 66%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluamode_hlp.cpp.o
    [ 67%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluamode_lua.cpp.o
    [ 68%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qluamode_c.cpp.o
    [ 69%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/qrc_qtide.cxx.o
    [ 70%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/moc_qluatextedit.cxx.o
    [ 71%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/moc_qluaide.cxx.o
    [ 72%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/moc_qluamainwindow.cxx.o
    [ 73%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/moc_qluabrowser.cxx.o
    [ 75%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/moc_qluaeditor.cxx.o
    [ 76%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/moc_qluasdimain.cxx.o
    [ 77%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/moc_qluamdimain.cxx.o
    [ 78%] Building CXX object packages/qtide/CMakeFiles/libqtide.dir/moc_qluamode.cxx.o
    [ 79%] Linking CXX shared module libqtide.so
    [ 79%] Built target libqtide
    [ 80%] Generating moc_qtluasvggenerator.cxx
    Scanning dependencies of target libqtsvg
    [ 81%] Building CXX object packages/qtsvg/CMakeFiles/libqtsvg.dir/qtsvg.cpp.o
    [ 82%] Building CXX object packages/qtsvg/CMakeFiles/libqtsvg.dir/qtluasvggenerator.cpp.o
    [ 83%] Building CXX object packages/qtsvg/CMakeFiles/libqtsvg.dir/moc_qtluasvggenerator.cxx.o
    [ 84%] Linking CXX shared module libqtsvg.so
    [ 84%] Built target libqtsvg
    Scanning dependencies of target libqtuiloader
    [ 85%] Building CXX object packages/qtuiloader/CMakeFiles/libqtuiloader.dir/uiloader.cpp.o
    [ 86%] Linking CXX shared module libqtuiloader.so
    [ 86%] Built target libqtuiloader
    [ 88%] Generating moc_qtlualistener.cxx
    [ 89%] Generating qtluapainter.moc
    [ 90%] Generating moc_qtluapainter.cxx
    [ 91%] Generating moc_qtluaprinter.cxx
    Scanning dependencies of target libqtwidget
    [ 92%] Building CXX object packages/qtwidget/CMakeFiles/libqtwidget.dir/qtluapainter.cpp.o
    [ 93%] Building CXX object packages/qtwidget/CMakeFiles/libqtwidget.dir/qtluaprinter.cpp.o
    [ 94%] Building CXX object packages/qtwidget/CMakeFiles/libqtwidget.dir/qtlualistener.cpp.o
    [ 95%] Building CXX object packages/qtwidget/CMakeFiles/libqtwidget.dir/qtwidget.cpp.o
    [ 96%] Building CXX object packages/qtwidget/CMakeFiles/libqtwidget.dir/moc_qtluapainter.cxx.o
    [ 97%] Building CXX object packages/qtwidget/CMakeFiles/libqtwidget.dir/moc_qtluaprinter.cxx.o
    [ 98%] Building CXX object packages/qtwidget/CMakeFiles/libqtwidget.dir/moc_qtlualistener.cxx.o
    [100%] Linking CXX shared module libqtwidget.so
    [100%] Built target libqtwidget
    cd build && make install
    [  6%] Built target libqtlua
    [ 18%] Built target libqlua
    [ 20%] Built target qlua
    [ 22%] Built target libqtcore
    [ 28%] Built target libqtgui
    [ 79%] Built target libqtide
    [ 84%] Built target libqtsvg
    [ 86%] Built target libqtuiloader
    [100%] Built target libqtwidget
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libqtlua.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/libqtlua.so" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/qtlua/qtluaengine.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/qtlua/qtluautils.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/include/qtlua/qtluaconf.h
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/conf/cmake/QtLuaConfig.cmake
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libqlua.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/libqlua.so" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/bin/qlua
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/bin/qlua" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtcore/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtcore.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtcore.so" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtgui/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtgui.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtgui.so" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtide.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtide.so" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtide/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtide/prefs.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtide/prefs.ui
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtsvg.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtsvg.so" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtsvg/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtuiloader/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtuiloader/test.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtuiloader/test.ui
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtuiloader.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtuiloader.so" to "$ORIGIN/../lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lua/qtwidget/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtwidget.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qtlua/scm-1/lib/libqtwidget.so" to "$ORIGIN/../lib"
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    qtlua scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DLUALIB= -DLUA_LIBDIR="/home/gbt/MVIG-SJTU/distro/install/lib" -DLUADIR="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qttorch/scm-1/lua" -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qttorch/scm-1" && make

    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Looking for Q_WS_X11
    -- Looking for Q_WS_X11 - found
    -- Looking for Q_WS_WIN
    -- Looking for Q_WS_WIN - not found
    -- Looking for Q_WS_QWS
    -- Looking for Q_WS_QWS - not found
    -- Looking for Q_WS_MAC
    -- Looking for Q_WS_MAC - not found
    -- Found Qt4: /usr/bin/qmake (found version "4.8.7")
    -- Configuring done
    -- Generating done
    CMake Warning:
      Manually-specified variables were not used by the project:

        LUADIR


    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/pkg/qttorch/build
    Scanning dependencies of target qttorch
    [ 50%] Building CXX object CMakeFiles/qttorch.dir/qttorch.cpp.o
    [100%] Linking CXX shared module libqttorch.so
    [100%] Built target qttorch
    cd build && make install
    [100%] Built target qttorch
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qttorch/scm-1/lib/libqttorch.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qttorch/scm-1/lib/libqttorch.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qttorch/scm-1/lua/qttorch/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qttorch/scm-1/lua/qttorch/doc
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/qttorch/scm-1/lua/qttorch/doc/README.md
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    qttorch scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Warning: unmatched variable LUALIB
    cmake -E make_directory build && cd build && cmake .. -DLUALIB= -DLUA_INCDIR=/home/gbt/MVIG-SJTU/distro/install/include -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1" && make
       
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Performing Test HAS_LUAL_SETFUNCS
    -- Performing Test HAS_LUAL_SETFUNCS - Failed
    -- 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  
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/extra/threads/build
    Scanning dependencies of target threadsmain
    [ 20%] Building C object CMakeFiles/threadsmain.dir/lib/thread-main.c.o
    [ 40%] Linking C shared module libthreadsmain.so
    [ 40%] Built target threadsmain
    Scanning dependencies of target threads
    [ 60%] Building C object CMakeFiles/threads.dir/lib/init.c.o
    [ 80%] Building C object CMakeFiles/threads.dir/lib/THThread.c.o
    [100%] Linking C shared module libthreads.so
    [100%] Built target threads
    cd build && make install
    [ 40%] Built target threadsmain
    [100%] Built target threads
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/libthreadsmain.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/libthreadsmain.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1/lib/libthreads.so
    -- Set runtime path of "/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1/lib/libthreads.so" to "$ORIGIN/../lib:/home/gbt/MVIG-SJTU/distro/install/lib"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1/lua/threads/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1/lua/threads/threads.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1/lua/threads/serialize.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1/lua/threads/sharedserialize.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1/lua/threads/queue.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/threads/scm-1/lua/threads/safe.lua
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    threads scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    argcheck scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    Found CUDA on your machine. Installing optional CUDA packages
    cmake -E make_directory build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1" && make

    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- Found CUDA: /usr/local/cuda (found suitable version "8.0", minimum required is "7.0")
    -- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1")
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /home/gbt/MVIG-SJTU/distro/extra/cudnn/build
    cd build && make install
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/BGRU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/BLSTM.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/BatchNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/ClippedReLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/GRU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/LSTM.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/LogSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/Pointwise.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/Pooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/Pooling3D.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/RNN.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/RNNReLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/RNNTanh.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/ReLU.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/Sigmoid.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialAveragePooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialBatchNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialCrossEntropyCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialCrossMapLRN.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialDivisiveNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialFullConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialLogSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/SpatialSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/Tanh.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/TemporalConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/VolumetricAveragePooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/VolumetricBatchNormalization.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/VolumetricConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/VolumetricCrossEntropyCriterion.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/VolumetricFullConvolution.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/VolumetricLogSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/VolumetricMaxPooling.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/VolumetricSoftMax.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/convert.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/env.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/ffi.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/find.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/functional.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/cudnn/scm-1/lua/cudnn/init.lua
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    cudnn scm-1 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)



    Do you want to automatically prepend the Torch install location
    to PATH and LD_LIBRARY_PATH in your /home/gbt/.bashrc? (yes/no)
    [yes] >>>
    yes
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$ ls
    admin      cmake           install           install.sh  test.bat                update.sh
    build      CMakeLists.txt  install.bat       LICENSE.md  test.sh                 win-files
    clean.bat  exe             install-deps      pkg         travis_cuda_install.sh
    clean.sh   extra           install-deps.bat  README.md   uninstall.bat
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/distro$

    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ mkdir Tensorflow
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ ls
    AlphaPose  distro  Tensorflow
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$
    gbt@gbt-Precision-7720:~/MVIG-SJTU$ cd Tensorflow
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$ virtualenv --system-site-packages /home/gbt/MVIG-SJTU/Tensorflow
    Running virtualenv with interpreter /usr/bin/python2
    New python executable in /home/gbt/MVIG-SJTU/Tensorflow/bin/python2
    Also creating executable in /home/gbt/MVIG-SJTU/Tensorflow/bin/python
    Installing setuptools, pkg_resources, pip, wheel...done.
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$ ls
    bin  include  lib  local  pip-selfcheck.json  share
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$ source bin/activate
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$ pip install --upgrade tensorflow
    Collecting tensorflow
      Using cached https://files.pythonhosted.org/packages/1a/c4/8cb95df0bf06089014259b25997c3921a87aa08e2cd981417d91ca92f7e9/tensorflow-1.10.1-cp27-cp27mu-manylinux1_x86_64.whl
    Collecting setuptools<=39.1.0 (from tensorflow)
      Using cached https://files.pythonhosted.org/packages/8c/10/79282747f9169f21c053c562a0baa21815a8c7879be97abd930dbcf862e8/setuptools-39.1.0-py2.py3-none-any.whl
    Collecting astor>=0.6.0 (from tensorflow)
      Using cached https://files.pythonhosted.org/packages/35/6b/11530768cac581a12952a2aad00e1526b89d242d0b9f59534ef6e6a1752f/astor-0.7.1-py2.py3-none-any.whl
    Requirement already satisfied, skipping upgrade: enum34>=1.1.6 in /home/gbt/.local/lib/python2.7/site-packages (from tensorflow) (1.1.6)
    Collecting gast>=0.2.0 (from tensorflow)
      Using cached https://files.pythonhosted.org/packages/5c/78/ff794fcae2ce8aa6323e789d1f8b3b7765f601e7702726f430e814822b96/gast-0.2.0.tar.gz
    Collecting tensorboard<1.11.0,>=1.10.0 (from tensorflow)
      Using cached https://files.pythonhosted.org/packages/e0/11/8ac6a52179a290a249f80cb6e157f1bb1f87a7e44dba8a0869701d8076cb/tensorboard-1.10.0-py2-none-any.whl
    Requirement already satisfied, skipping upgrade: six>=1.10.0 in /usr/local/lib/python2.7/dist-packages (from tensorflow) (1.11.0)
    Requirement already satisfied, skipping upgrade: wheel in ./lib/python2.7/site-packages (from tensorflow) (0.31.1)
    Collecting absl-py>=0.1.6 (from tensorflow)
      Using cached https://files.pythonhosted.org/packages/a7/86/67f55488ec68982270142c340cd23cd2408835dc4b24bd1d1f1e114f24c3/absl-py-0.4.1.tar.gz
    Collecting backports.weakref>=1.0rc1 (from tensorflow)
      Using cached https://files.pythonhosted.org/packages/88/ec/f598b633c3d5ffe267aaada57d961c94fdfa183c5c3ebda2b6d151943db6/backports.weakref-1.0.post1-py2.py3-none-any.whl
    Collecting termcolor>=1.1.0 (from tensorflow)
      Using cached https://files.pythonhosted.org/packages/8a/48/a76be51647d0eb9f10e2a4511bf3ffb8cc1e6b14e9e4fab46173aa79f981/termcolor-1.1.0.tar.gz
    Requirement already satisfied, skipping upgrade: numpy<=1.14.5,>=1.13.3 in /home/gbt/.local/lib/python2.7/site-packages (from tensorflow) (1.14.2)
    Collecting grpcio>=1.8.6 (from tensorflow)
      Downloading https://files.pythonhosted.org/packages/3d/15/b34114198a2bc9c9bb73b21e2b559468a1a68bb28b373d21da6e51d6204f/grpcio-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl (9.4MB)
        100% |████████████████████████████████| 9.4MB 1.4MB/s
    Collecting protobuf>=3.6.0 (from tensorflow)
      Downloading https://files.pythonhosted.org/packages/b8/c2/b7f587c0aaf8bf2201405e8162323037fe8d17aa21d3c7dda811b8d01469/protobuf-3.6.1-cp27-cp27mu-manylinux1_x86_64.whl (1.1MB)
        100% |████████████████████████████████| 1.1MB 2.9MB/s
    Requirement already satisfied, skipping upgrade: mock>=2.0.0 in /usr/local/lib/python2.7/dist-packages (from tensorflow) (2.0.0)
    Collecting werkzeug>=0.11.10 (from tensorboard<1.11.0,>=1.10.0->tensorflow)
      Downloading https://files.pythonhosted.org/packages/20/c4/12e3e56473e52375aa29c4764e70d1b8f3efa6682bef8d0aae04fe335243/Werkzeug-0.14.1-py2.py3-none-any.whl (322kB)
        100% |████████████████████████████████| 327kB 7.8MB/s
    Collecting futures>=3.1.1; python_version < "3" (from tensorboard<1.11.0,>=1.10.0->tensorflow)
      Downloading https://files.pythonhosted.org/packages/2d/99/b2c4e9d5a30f6471e410a146232b4118e697fa3ffc06d6a65efde84debd0/futures-3.2.0-py2-none-any.whl
    Collecting markdown>=2.6.8 (from tensorboard<1.11.0,>=1.10.0->tensorflow)
      Downloading https://files.pythonhosted.org/packages/6d/7d/488b90f470b96531a3f5788cf12a93332f543dbab13c423a5e7ce96a0493/Markdown-2.6.11-py2.py3-none-any.whl (78kB)
        100% |████████████████████████████████| 81kB 6.4MB/s
    Requirement already satisfied, skipping upgrade: pbr>=0.11 in /usr/local/lib/python2.7/dist-packages (from mock>=2.0.0->tensorflow) (4.0.0)
    Requirement already satisfied, skipping upgrade: funcsigs>=1; python_version < "3.3" in /usr/local/lib/python2.7/dist-packages (from mock>=2.0.0->tensorflow) (1.0.2)
    Building wheels for collected packages: gast, absl-py, termcolor
      Running setup.py bdist_wheel for gast ... done
      Stored in directory: /home/gbt/.cache/pip/wheels/9a/1f/0e/3cde98113222b853e98fc0a8e9924480a3e25f1b4008cedb4f
      Running setup.py bdist_wheel for absl-py ... done
      Stored in directory: /home/gbt/.cache/pip/wheels/78/a3/a3/689120b95c26b9a21be6584b4b482b0fda0a1b60efd30af558
      Running setup.py bdist_wheel for termcolor ... done
      Stored in directory: /home/gbt/.cache/pip/wheels/7c/06/54/bc84598ba1daf8f970247f550b175aaaee85f68b4b0c5ab2c6
    Successfully built gast absl-py termcolor
    Installing collected packages: setuptools, astor, gast, werkzeug, futures, markdown, protobuf, tensorboard, absl-py, backports.weakref, termcolor, grpcio, tensorflow
      Found existing installation: setuptools 40.3.0
        Uninstalling setuptools-40.3.0:
          Successfully uninstalled setuptools-40.3.0
      Found existing installation: protobuf 3.5.2.post1
        Not uninstalling protobuf at /usr/local/lib/python2.7/dist-packages, outside environment /home/gbt/MVIG-SJTU/Tensorflow
        Can't uninstall 'protobuf'. No files were found to uninstall.
    Successfully installed absl-py-0.4.1 astor-0.7.1 backports.weakref-1.0.post1 futures-3.2.0 gast-0.2.0 grpcio-1.15.0 markdown-2.6.11 protobuf-3.6.1 setuptools-39.1.0 tensorboard-1.10.0 tensorflow-1.10.1 termcolor-1.1.0 werkzeug-0.14.1
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$ python
    Python 2.7.12 (default, Dec  4 2017, 14:50:18)
    [GCC 5.4.0 20160609] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>>
    >>> import tensorflow as tf
    >>> hello = tf.constant('hello tensorflow')
    >>> sess = tf.Session()
    2018-09-17 11:48:07.926292: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
    >>> print(sess.run(hello))
    hello tensorflow
    >>>
    >>>
    >>>
    >>> exit()
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/Tensorflow$ cd ../
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU$ ls
    AlphaPose  distro  Tensorflow
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU$ cd AlphaPose
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ls
    doc       fetch_models.sh  install.sh  PoseFlow  README.md  train
    examples  human-detection  LICENSE     predict   run.sh
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ chmod +x install.sh
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ./install.sh
    Collecting easydict
      Downloading https://files.pythonhosted.org/packages/e7/24/1fbad1ef849573ea97983e29761160462d89b95dc71853f1080c281ac964/easydict-1.8.tar.gz
    Building wheels for collected packages: easydict
      Running setup.py bdist_wheel for easydict ... done
      Stored in directory: /home/gbt/.cache/pip/wheels/3f/f0/7c/1ec164f1dc11a6e0ef58463f5e25e83d9c6f661e2e8e70bcef
    Successfully built easydict
    Installing collected packages: easydict
    Successfully installed easydict-1.8
    Collecting tqdm
      Downloading https://files.pythonhosted.org/packages/79/43/19c9fee28110cd47f73e6bc596394337fe9f3e5825b4de402bbf30b3beb5/tqdm-4.26.0-py2.py3-none-any.whl (43kB)
        100% |████████████████████████████████| 51kB 141kB/s
    Installing collected packages: tqdm
    Successfully installed tqdm-4.26.0
    Collecting opencv-python
      Downloading https://files.pythonhosted.org/packages/51/3d/9b10d7159e10ac87bd6c1b403dbc72b1240e18da51f9d56f50bb06f75d15/opencv_python-3.4.3.18-cp27-cp27mu-manylinux1_x86_64.whl (25.0MB)
        100% |████████████████████████████████| 25.0MB 1.3MB/s
    Requirement already satisfied: numpy>=1.11.1 in /home/gbt/.local/lib/python2.7/site-packages (from opencv-python) (1.14.2)
    Installing collected packages: opencv-python
    Successfully installed opencv-python-3.4.3.18
    Collecting h5py
      Downloading https://files.pythonhosted.org/packages/33/0c/1c5dfa85e05052aa5f50969d87c67a2128dc39a6f8ce459a503717e56bd0/h5py-2.8.0-cp27-cp27mu-manylinux1_x86_64.whl (2.7MB)
        100% |████████████████████████████████| 2.7MB 997kB/s
    Requirement already satisfied: six in /usr/local/lib/python2.7/dist-packages (from h5py) (1.11.0)
    Requirement already satisfied: numpy>=1.7 in /home/gbt/.local/lib/python2.7/site-packages (from h5py) (1.14.2)
    Installing collected packages: h5py
    Successfully installed h5py-2.8.0
    Installing https://raw.githubusercontent.com/torch/rocks/master/hdf5-20-0.rockspec...
    Using https://raw.githubusercontent.com/torch/rocks/master/hdf5-20-0.rockspec... switching to 'build' mode

    Missing dependencies for hdf5:
    logroll

    Using https://raw.githubusercontent.com/torch/rocks/master/logroll-0-0.rockspec... switching to 'build' mode

    Missing dependencies for logroll:
    fn
    pprint

    Using https://raw.githubusercontent.com/torch/rocks/master/fn-0-0.rockspec... switching to 'build' mode

    Missing dependencies for fn:
    util
    totem

    Using https://raw.githubusercontent.com/torch/rocks/master/util-0-0.rockspec... switching to 'build' mode
    正克隆到 'lua-util'...
    remote: Counting objects: 19, done.
    remote: Compressing objects: 100% (18/18), done.
    remote: Total 19 (delta 0), reused 13 (delta 0), pack-reused 0
    接收对象中: 100% (19/19), 8.26 KiB | 0 bytes/s, 完成.
    检查连接... 完成。
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    util 0-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/

    Using https://raw.githubusercontent.com/torch/rocks/master/totem-0-0.rockspec... switching to 'build' mode
    正克隆到 'torch-totem'...
    remote: Counting objects: 28, done.
    remote: Compressing objects: 100% (26/26), done.
    remote: Total 28 (delta 0), reused 13 (delta 0), pack-reused 0
    接收对象中: 100% (28/28), 20.25 KiB | 0 bytes/s, 完成.
    检查连接... 完成。
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    totem 0-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    正克隆到 'lua-fn'...
    remote: Counting objects: 12, done.
    remote: Compressing objects: 100% (11/11), done.
    remote: Total 12 (delta 0), reused 7 (delta 0), pack-reused 0
    接收对象中: 100% (12/12), 8.80 KiB | 0 bytes/s, 完成.
    检查连接... 完成。
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    fn 0-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/

    Using https://raw.githubusercontent.com/torch/rocks/master/pprint-0-0.rockspec... switching to 'build' mode
    正克隆到 'lua-pprint'...
    remote: Counting objects: 8, done.
    remote: Compressing objects: 100% (7/7), done.
    remote: Total 8 (delta 0), reused 4 (delta 0), pack-reused 0
    接收对象中: 100% (8/8), 5.47 KiB | 0 bytes/s, 完成.
    检查连接... 完成。
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    pprint 0-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/

    正克隆到 'logroll'...
    remote: Counting objects: 8, done.
    remote: Compressing objects: 100% (7/7), done.
    remote: Total 8 (delta 0), reused 5 (delta 0), pack-reused 0
    接收对象中: 100% (8/8), 完成.
    检查连接... 完成。
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    logroll 0-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/

    正克隆到 'torch-hdf5'...
    remote: Counting objects: 45, done.
    remote: Compressing objects: 100% (37/37), done.
    remote: Total 45 (delta 2), reused 27 (delta 2), pack-reused 0
    接收对象中: 100% (45/45), 29.96 KiB | 0 bytes/s, 完成.
    处理 delta 中: 100% (2/2), 完成.
    检查连接... 完成。
    cmake -E make_directory build;
    cd build;
    cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="/home/gbt/MVIG-SJTU/distro/install/bin/.." -DCMAKE_INSTALL_PREFIX="/home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0";
    make
       
    -- The C compiler identification is GNU 5.4.0
    -- The CXX compiler identification is GNU 5.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
    -- Found Torch7 in /home/gbt/MVIG-SJTU/distro/install
    -- HDF5: Using hdf5 compiler wrapper to determine C configuration
    -- Found HDF5: /usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5.so;/usr/lib/x86_64-linux-gnu/libpthread.so;/usr/lib/x86_64-linux-gnu/libsz.so;/usr/lib/x86_64-linux-gnu/libz.so;/usr/lib/x86_64-linux-gnu/libdl.so;/usr/lib/x86_64-linux-gnu/libm.so (found suitable version "1.8.16", minimum required is "1.8")  
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /tmp/luarocks_hdf5-20-0-2999/torch-hdf5/build
    cd build && make install
    Install the project...
    -- Install configuration: "Release"
    -- Generating /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0/lua/hdf5/config.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0/lua/hdf5/dataset.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0/lua/hdf5/datasetOptions.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0/lua/hdf5/ffi.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0/lua/hdf5/file.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0/lua/hdf5/group.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0/lua/hdf5/init.lua
    -- Installing: /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks/hdf5/20-0/lua/hdf5/testUtils.lua
    Updating manifest for /home/gbt/MVIG-SJTU/distro/install/lib/luarocks/rocks
    hdf5 20-0 is now built and installed in /home/gbt/MVIG-SJTU/distro/install/ (license: BSD)

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ chmod +x fetch_models.sh
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ./fetch_models.sh
    --2018-09-17 11:50:55--  http://mvig.sjtu.edu.cn/publications/rmpe/output.zip
    正在解析主机 mvig.sjtu.edu.cn (mvig.sjtu.edu.cn)... 202.121.182.216
    正在连接 mvig.sjtu.edu.cn (mvig.sjtu.edu.cn)|202.121.182.216|:80... 已连接。
    已发出 HTTP 请求,正在等待回应... 200 OK
    长度: 475973264 (454M) [application/zip]
    正在保存至: “output.zip”

    output.zip                  100%[===========================================>] 453.92M  1.51MB/s    in 5m 57s  

    2018-09-17 11:56:51 (1.27 MB/s) - 已保存 “output.zip” [475973264/475973264])

    Archive:  output.zip
       creating: output/res152/
       creating: output/res152/coco_2014_train+coco_2014_valminusminival/
       creating: output/res152/coco_2014_train+coco_2014_valminusminival/default/
      inflating: output/res152/coco_2014_train+coco_2014_valminusminival/default/res152.ckpt.data-00000-of-00001  
      inflating: output/res152/coco_2014_train+coco_2014_valminusminival/default/res152.ckpt.index  
      inflating: output/res152/coco_2014_train+coco_2014_valminusminival/default/res152.ckpt.meta  
      inflating: output/res152/coco_2014_train+coco_2014_valminusminival/default/res152.pkl  
    --2018-09-17 11:56:55--  http://mvig.sjtu.edu.cn/publications/rmpe/final_model.t7
    正在解析主机 mvig.sjtu.edu.cn (mvig.sjtu.edu.cn)... 202.121.182.216
    正在连接 mvig.sjtu.edu.cn (mvig.sjtu.edu.cn)|202.121.182.216|:80... 已连接。
    已发出 HTTP 请求,正在等待回应... 200 OK
    长度: 229334152 (219M) [application/octet-stream]
    正在保存至: “final_model.t7”

    final_model.t7              100%[===========================================>] 218.71M  1.53MB/s    in 2m 57s  

    2018-09-17 11:59:52 (1.24 MB/s) - 已保存 “final_model.t7” [229334152/229334152])

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ls
    doc       fetch_models.sh  install.sh  PoseFlow  README.md  train
    examples  human-detection  LICENSE     predict   run.sh
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ./run.sh --indir examples/demo/ --outdir examples/results/ --vis
    0
    generating bbox from Faster RCNN...
    2018-09-17 12:00:52.469217: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
    Loaded network ../output/res152/coco_2014_train+coco_2014_valminusminival/default/res152.ckpt
    /home/gbt/MVIG-SJTU/AlphaPose/examples/demo/

    100%|█████████████████████████████████████████████████████████████████████████████| 3/3 [00:58<00:00, 19.50s/it]
    pose estimation with RMPE...
    MPII    
     [=================================== 69/69 ===================================>] Tot: 12s285ms | Step: 180ms   
    ----------Finished----------    
    visualization...
    100%|█████████████████████████████████████████████████████████████████████████████| 3/3 [00:01<00:00,  2.32it/s]
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$





    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ./run.sh --indir examples/demo/ --outdir examples/results/ --vis
    0
    generating bbox from Faster RCNN...
    2018-09-17 12:41:26.284780: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
    Loaded network ../output/res152/coco_2014_train+coco_2014_valminusminival/default/res152.ckpt
    /home/gbt/MVIG-SJTU/AlphaPose/examples/demo/

    100%|█████████████████████████████████████████████████████████████████████████████| 6/6 [01:56<00:00, 19.18s/it]
    pose estimation with RMPE...
    MPII    
    ----------Finished----------========= 107/108 ================================>.] ETA: 180ms | Step: 180ms      
    visualization...
    100%|█████████████████████████████████████████████████████████████████████████████| 6/6 [00:01<00:00,  3.81it/s]
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ./run.sh --indir examples/demo1/ --outdir examples/results1/ --vis
    0
    generating bbox from Faster RCNN...
    2018-09-17 12:50:51.350630: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
    Loaded network ../output/res152/coco_2014_train+coco_2014_valminusminival/default/res152.ckpt
    /home/gbt/MVIG-SJTU/AlphaPose/examples/demo1/

    100%|███████████████████████████████████████████████████████████████████████████| 10/10 [03:09<00:00, 19.20s/it]
    pose estimation with RMPE...
    MPII    
    ----------Finished----------========= 137/138 ================================>.] ETA: 181ms | Step: 181ms      
    visualization...
    100%|███████████████████████████████████████████████████████████████████████████| 10/10 [00:01<00:00,  5.28it/s]
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

     (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$ ./run.sh --indir examples/demo2/ --outdir examples/results2/ --vis
    0
    generating bbox from Faster RCNN...
    2018-09-17 13:01:39.514275: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
    Loaded network ../output/res152/coco_2014_train+coco_2014_valminusminival/default/res152.ckpt
    /home/gbt/MVIG-SJTU/AlphaPose/examples/demo2/

    100%|█████████████████████████████████████████████████████████████████████████████| 3/3 [00:57<00:00, 19.16s/it]
    pose estimation with RMPE...
    MPII    
     [=================================== 23/23 ===================================>] Tot: 3s835ms | Step: 174ms    
    ----------Finished----------    
    visualization...
    100%|█████████████████████████████████████████████████████████████████████████████| 3/3 [00:00<00:00,  4.31it/s]
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$
    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

    (Tensorflow) gbt@gbt-Precision-7720:~/MVIG-SJTU/AlphaPose$

  • 相关阅读:
    java.sql.SQLException: Lock wait timeout exceeded --转
    一致性问题和Raft一致性算法——一致性问题是无法彻底解决的,可以说一个分布式系统可靠性达到99.99…%,但不能说它达到了100%
    分布式系统的Raft算法——在失联阶段这个老Leader的任何更新都不能算commit,都回滚,接受新的Leader的新的更新 意味着还是可能丢数据!!!
    NFL原则告诉我们做决策的时候,试图找到一个能解决所有问题,“大而全”的方案是不存在的。我们应当找到最关心的问题,因地制宜做出选择。——聚焦目标,取舍有道!
    wiredtiger存储引擎介绍——本质就是LSM,当然里面也可以包含btree和列存储
    Druid:一个用于大数据实时处理的开源分布式系统——大数据实时查询和分析的高容错、高性能开源分布式系统
    ES doc_values的来源,field data——就是doc->terms的正向索引啊,不过它是在查询阶段通过读取倒排索引loading segments放在内存而得到的?
    ES doc_values介绍2——本质是field value的列存储,做聚合分析用,ES默认开启,会占用存储空间
    列存储压缩技巧,除公共除数或者同时减去最小数,字符串压缩的话,直接去重后用数字ID压缩
    ES doc_values介绍——本质是field value的列存储,做聚合分析用,ES默认开启,会占用存储空间(列存储压缩技巧,除公共除数或者同时减去最小数,字符串压缩的话,直接去重后用数字ID压缩)
  • 原文地址:https://www.cnblogs.com/herd/p/9661393.html
Copyright © 2011-2022 走看看