Skip to content

Instantly share code, notes, and snippets.

@SumNeuron
Created September 17, 2017 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SumNeuron/4dadfed9be2423926d61dbc475848770 to your computer and use it in GitHub Desktop.
Save SumNeuron/4dadfed9be2423926d61dbc475848770 to your computer and use it in GitHub Desktop.
ran make clean and did clean install
This file has been truncated, but you can view the full file.
myhost:Downloads sumner$ git clone --recursive https://github.com/apache/incubator-mxnet.git mxnet --branch master
Cloning into 'mxnet'...
remote: Counting objects: 48148, done.
remote: Total 48148 (delta 0), reused 0 (delta 0), pack-reused 48147
Receiving objects: 100% (48148/48148), 20.79 MiB | 708.00 KiB/s, done.
Resolving deltas: 100% (30674/30674), done.
Checking connectivity... done.
Submodule 'cub' (https://github.com/dmlc/cub) registered for path 'cub'
Submodule 'dlpack' (https://github.com/dmlc/dlpack) registered for path 'dlpack'
Submodule 'dmlc-core' (https://github.com/dmlc/dmlc-core.git) registered for path 'dmlc-core'
Submodule 'mshadow' (https://github.com/dmlc/mshadow.git) registered for path 'mshadow'
Submodule 'nnvm' (https://github.com/dmlc/nnvm) registered for path 'nnvm'
Submodule 'ps-lite' (https://github.com/dmlc/ps-lite) registered for path 'ps-lite'
Cloning into 'cub'...
remote: Counting objects: 190, done.
remote: Total 190 (delta 0), reused 0 (delta 0), pack-reused 190
Receiving objects: 100% (190/190), 498.22 KiB | 101.00 KiB/s, done.
Resolving deltas: 100% (58/58), done.
Checking connectivity... done.
Submodule path 'cub': checked out '05eb57faa0a4cac37c2a86fdf4b4dc865a95a1a3'
Cloning into 'dlpack'...
remote: Counting objects: 104, done.
remote: Total 104 (delta 0), reused 0 (delta 0), pack-reused 104
Receiving objects: 100% (104/104), 45.41 KiB | 0 bytes/s, done.
Resolving deltas: 100% (34/34), done.
Checking connectivity... done.
Submodule path 'dlpack': checked out 'a6e09b58dc00ee0065f5b7879800e646fbb01d1e'
Cloning into 'dmlc-core'...
remote: Counting objects: 4406, done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 4406 (delta 1), reused 4 (delta 1), pack-reused 4393
Receiving objects: 100% (4406/4406), 1.00 MiB | 940.00 KiB/s, done.
Resolving deltas: 100% (2601/2601), done.
Checking connectivity... done.
Submodule path 'dmlc-core': checked out '5b520294be8def5c0372cf8c65a7089422f46653'
Cloning into 'mshadow'...
remote: Counting objects: 4453, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 4453 (delta 0), reused 1 (delta 0), pack-reused 4451
Receiving objects: 100% (4453/4453), 1.41 MiB | 813.00 KiB/s, done.
Resolving deltas: 100% (3052/3052), done.
Checking connectivity... done.
Submodule path 'mshadow': checked out '15d2533f3a92e7cdbcd081114f8e392f4b7e5c67'
Cloning into 'nnvm'...
remote: Counting objects: 1364, done.
remote: Compressing objects: 100% (7/7), done.
remote: Total 1364 (delta 0), reused 0 (delta 0), pack-reused 1357
Receiving objects: 100% (1364/1364), 368.69 KiB | 0 bytes/s, done.
Resolving deltas: 100% (778/778), done.
Checking connectivity... done.
Submodule path 'nnvm': checked out 'e842c098decf9f5eb6bd84e307c58e50078596b7'
Submodule 'dmlc-core' (https://github.com/dmlc/dmlc-core) registered for path 'dmlc-core'
Submodule 'plugin/nnvm-fusion' (https://github.com/dmlc/nnvm-fusion.git) registered for path 'plugin/nnvm-fusion'
Cloning into 'dmlc-core'...
remote: Counting objects: 4406, done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 4406 (delta 1), reused 4 (delta 1), pack-reused 4393
Receiving objects: 100% (4406/4406), 1.00 MiB | 906.00 KiB/s, done.
Resolving deltas: 100% (2601/2601), done.
Checking connectivity... done.
Submodule path 'nnvm/dmlc-core': checked out 'e880afeb932d746e55eb92e8c6eb3ff1b3697c48'
Cloning into 'plugin/nnvm-fusion'...
remote: Counting objects: 24, done.
remote: Total 24 (delta 0), reused 0 (delta 0), pack-reused 24
Unpacking objects: 100% (24/24), done.
Checking connectivity... done.
Submodule path 'nnvm/plugin/nnvm-fusion': checked out '86853a73e93fdbcdaec6fd3eda39e8f11d554c92'
Cloning into 'ps-lite'...
remote: Counting objects: 1910, done.
remote: Total 1910 (delta 0), reused 0 (delta 0), pack-reused 1909
Receiving objects: 100% (1910/1910), 577.72 KiB | 135.00 KiB/s, done.
Resolving deltas: 100% (1216/1216), done.
Checking connectivity... done.
Submodule path 'ps-lite': checked out 'acdb698fa3bb80929ef83bb37c705f025e119b82'
myhost:Downloads sumner$ cd mxnet/
myhost:mxnet sumner$ cp make/osx.mk ./config.mk
myhost:mxnet sumner$ echo "USE_BLAS = openblas" >> ./config.mk
myhost:mxnet sumner$ echo "ADD_CFLAGS += -I/usr/local/opt/openblas/include" >> ./config.mk
myhost:mxnet sumner$ echo "ADD_LDFLAGS += -L/usr/local/opt/openblas/lib" >> ./config.mk
myhost:mxnet sumner$ echo "ADD_LDFLAGS += -L/usr/local/lib/graphviz/" >> ./config.mk
myhost:mxnet sumner$ echo "USE_CUDA = 1" >> ./config.mk
myhost:mxnet sumner$ echo "USE_CUDA_PATH = /usr/local/cuda" >> ./config.mk
myhost:mxnet sumner$ echo "USE_CUDNN = 1" >> ./config.mk
myhost:mxnet sumner$ make
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/count_sketch.cc -o build/src/operator/contrib/count_sketch.o
In file included from src/operator/contrib/count_sketch.cc:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cc:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/ctc_loss.cc -o build/src/operator/contrib/ctc_loss.o
In file included from src/operator/contrib/ctc_loss.cc:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cc:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/deformable_convolution.cc -o build/src/operator/contrib/deformable_convolution.o
In file included from src/operator/contrib/deformable_convolution.cc:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cc:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cc:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/deformable_psroi_pooling.cc -o build/src/operator/contrib/deformable_psroi_pooling.o
In file included from src/operator/contrib/deformable_psroi_pooling.cc:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cc:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/dequantize.cc -o build/src/operator/contrib/dequantize.o
In file included from src/operator/contrib/dequantize.cc:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cc:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/fft.cc -o build/src/operator/contrib/fft.o
In file included from src/operator/contrib/fft.cc:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cc:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/ifft.cc -o build/src/operator/contrib/ifft.o
In file included from src/operator/contrib/ifft.cc:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cc:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/multi_proposal.cc -o build/src/operator/contrib/multi_proposal.o
In file included from src/operator/contrib/multi_proposal.cc:28:
In file included from src/operator/contrib/./multi_proposal-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cc:28:
In file included from src/operator/contrib/./multi_proposal-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/multibox_detection.cc -o build/src/operator/contrib/multibox_detection.o
In file included from src/operator/contrib/multibox_detection.cc:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cc:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/multibox_prior.cc -o build/src/operator/contrib/multibox_prior.o
In file included from src/operator/contrib/multibox_prior.cc:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cc:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/multibox_target.cc -o build/src/operator/contrib/multibox_target.o
In file included from src/operator/contrib/multibox_target.cc:26:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cc:26:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/proposal.cc -o build/src/operator/contrib/proposal.o
In file included from src/operator/contrib/proposal.cc:26:
In file included from src/operator/contrib/./proposal-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/proposal.cc:26:
In file included from src/operator/contrib/./proposal-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/psroi_pooling.cc -o build/src/operator/contrib/psroi_pooling.o
In file included from src/operator/contrib/psroi_pooling.cc:27:
In file included from src/operator/contrib/./psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/psroi_pooling.cc:27:
In file included from src/operator/contrib/./psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/contrib/quantize.cc -o build/src/operator/contrib/quantize.o
In file included from src/operator/contrib/quantize.cc:24:
In file included from src/operator/contrib/./quantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/quantize.cc:24:
In file included from src/operator/contrib/./quantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/custom/custom.cc -o build/src/operator/custom/custom.o
In file included from src/operator/custom/custom.cc:25:
In file included from src/operator/custom/./custom-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/custom/custom.cc:25:
In file included from src/operator/custom/./custom-inl.h:42:
In file included from src/operator/custom/../operator_common.h:40:
In file included from src/operator/custom/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/custom/native_op.cc -o build/src/operator/custom/native_op.o
In file included from src/operator/custom/native_op.cc:25:
In file included from src/operator/custom/./native_op-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/custom/native_op.cc:25:
In file included from src/operator/custom/./native_op-inl.h:37:
In file included from src/operator/custom/../operator_common.h:40:
In file included from src/operator/custom/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/custom/ndarray_op.cc -o build/src/operator/custom/ndarray_op.o
In file included from src/operator/custom/ndarray_op.cc:25:
In file included from src/operator/custom/./ndarray_op-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/custom/ndarray_op.cc:25:
In file included from src/operator/custom/./ndarray_op-inl.h:37:
In file included from src/operator/custom/../operator_common.h:40:
In file included from src/operator/custom/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/mkl/mkl_cppwrapper.cc -o build/src/operator/mkl/mkl_cppwrapper.o
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/mkl/mkl_memory.cc -o build/src/operator/mkl/mkl_memory.o
In file included from src/operator/mkl/mkl_memory.cc:22:
In file included from src/operator/mkl/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/mkl/mkl_memory.cc:22:
In file included from src/operator/mkl/../operator_common.h:40:
In file included from src/operator/mkl/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/nn/softmax.cc -o build/src/operator/nn/softmax.o
In file included from src/operator/nn/softmax.cc:24:
In file included from src/operator/nn/./softmax-inl.h:29:
In file included from src/operator/nn/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/nn/softmax.cc:24:
In file included from src/operator/nn/./softmax-inl.h:29:
In file included from src/operator/nn/../mxnet_op.h:29:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/nnpack/nnpack_util.cc -o build/src/operator/nnpack/nnpack_util.o
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/random/multisample_op.cc -o build/src/operator/random/multisample_op.o
In file included from src/operator/random/multisample_op.cc:24:
In file included from src/operator/random/./multisample_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/random/multisample_op.cc:24:
In file included from src/operator/random/./multisample_op.h:30:
In file included from src/operator/random/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/random/sample_multinomial_op.cc -o build/src/operator/random/sample_multinomial_op.o
In file included from src/operator/random/sample_multinomial_op.cc:24:
In file included from src/operator/random/./sample_multinomial_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/random/sample_multinomial_op.cc:24:
In file included from src/operator/random/./sample_multinomial_op.h:30:
In file included from src/operator/random/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/random/sample_op.cc -o build/src/operator/random/sample_op.o
In file included from src/operator/random/sample_op.cc:24:
In file included from src/operator/random/./sample_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/random/sample_op.cc:24:
In file included from src/operator/random/./sample_op.h:32:
In file included from src/operator/random/../elemwise_op_common.h:37:
In file included from src/operator/random/.././operator_common.h:40:
In file included from src/operator/random/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/broadcast_reduce_op_index.cc -o build/src/operator/tensor/broadcast_reduce_op_index.o
In file included from src/operator/tensor/broadcast_reduce_op_index.cc:24:
In file included from src/operator/tensor/./broadcast_reduce_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/broadcast_reduce_op_index.cc:24:
In file included from src/operator/tensor/./broadcast_reduce_op.h:32:
In file included from src/operator/tensor/../elemwise_op_common.h:37:
In file included from src/operator/tensor/.././operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/broadcast_reduce_op_value.cc -o build/src/operator/tensor/broadcast_reduce_op_value.o
In file included from src/operator/tensor/broadcast_reduce_op_value.cc:24:
In file included from src/operator/tensor/./broadcast_reduce_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/broadcast_reduce_op_value.cc:24:
In file included from src/operator/tensor/./broadcast_reduce_op.h:32:
In file included from src/operator/tensor/../elemwise_op_common.h:37:
In file included from src/operator/tensor/.././operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/cast_storage.cc -o build/src/operator/tensor/cast_storage.o
In file included from src/operator/tensor/cast_storage.cc:25:
In file included from src/operator/tensor/./cast_storage-inl.h:28:
In file included from include/mxnet/ndarray.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/cast_storage.cc:25:
In file included from src/operator/tensor/./cast_storage-inl.h:30:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/control_flow_op.cc -o build/src/operator/tensor/control_flow_op.o
In file included from src/operator/tensor/control_flow_op.cc:24:
In file included from src/operator/tensor/./control_flow_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/control_flow_op.cc:24:
In file included from src/operator/tensor/./control_flow_op.h:30:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/dot.cc -o build/src/operator/tensor/dot.o
In file included from src/operator/tensor/dot.cc:25:
In file included from src/operator/tensor/./dot-inl.h:28:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/dot.cc:25:
In file included from src/operator/tensor/./dot-inl.h:34:
In file included from src/operator/tensor/../elemwise_op_common.h:37:
In file included from src/operator/tensor/.././operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_broadcast_op_basic.cc -o build/src/operator/tensor/elemwise_binary_broadcast_op_basic.o
In file included from src/operator/tensor/elemwise_binary_broadcast_op_basic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_broadcast_op_basic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_broadcast_op_extended.cc -o build/src/operator/tensor/elemwise_binary_broadcast_op_extended.o
In file included from src/operator/tensor/elemwise_binary_broadcast_op_extended.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_broadcast_op_extended.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_broadcast_op_logic.cc -o build/src/operator/tensor/elemwise_binary_broadcast_op_logic.o
In file included from src/operator/tensor/elemwise_binary_broadcast_op_logic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_broadcast_op_logic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_op_basic.cc -o build/src/operator/tensor/elemwise_binary_op_basic.o
In file included from src/operator/tensor/elemwise_binary_op_basic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_op_basic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_op_extended.cc -o build/src/operator/tensor/elemwise_binary_op_extended.o
In file included from src/operator/tensor/elemwise_binary_op_extended.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_op_extended.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_op_logic.cc -o build/src/operator/tensor/elemwise_binary_op_logic.o
In file included from src/operator/tensor/elemwise_binary_op_logic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_op_logic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_scalar_op_basic.cc -o build/src/operator/tensor/elemwise_binary_scalar_op_basic.o
In file included from src/operator/tensor/elemwise_binary_scalar_op_basic.cc:24:
In file included from src/operator/tensor/./elemwise_binary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_scalar_op_basic.cc:24:
In file included from src/operator/tensor/./elemwise_binary_op.h:34:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_scalar_op_extended.cc -o build/src/operator/tensor/elemwise_binary_scalar_op_extended.o
In file included from src/operator/tensor/elemwise_binary_scalar_op_extended.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_scalar_op_extended.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_binary_scalar_op_logic.cc -o build/src/operator/tensor/elemwise_binary_scalar_op_logic.o
In file included from src/operator/tensor/elemwise_binary_scalar_op_logic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_binary_scalar_op_logic.cc:24:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_sum.cc -o build/src/operator/tensor/elemwise_sum.o
In file included from src/operator/tensor/elemwise_sum.cc:24:
In file included from src/operator/tensor/./elemwise_sum.h:31:
In file included from src/operator/tensor/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_sum.cc:24:
In file included from src/operator/tensor/./elemwise_sum.h:31:
In file included from src/operator/tensor/../operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/elemwise_unary_op.cc -o build/src/operator/tensor/elemwise_unary_op.o
In file included from src/operator/tensor/elemwise_unary_op.cc:24:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/elemwise_unary_op.cc:25:
In file included from src/operator/tensor/./elemwise_unary_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/indexing_op.cc -o build/src/operator/tensor/indexing_op.o
In file included from src/operator/tensor/indexing_op.cc:26:
In file included from src/operator/tensor/./indexing_op.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/indexing_op.cc:26:
In file included from src/operator/tensor/./indexing_op.h:38:
In file included from src/operator/tensor/../operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/init_op.cc -o build/src/operator/tensor/init_op.o
In file included from src/operator/tensor/init_op.cc:24:
In file included from src/operator/tensor/./init_op.h:27:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/init_op.cc:24:
In file included from src/operator/tensor/./init_op.h:35:
In file included from src/operator/tensor/../elemwise_op_common.h:37:
In file included from src/operator/tensor/.././operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/la_op.cc -o build/src/operator/tensor/la_op.o
In file included from src/operator/tensor/la_op.cc:24:
In file included from src/operator/tensor/./la_op.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/la_op.cc:24:
In file included from src/operator/tensor/./la_op.h:31:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/tensor/la_op.cc:25:
In file included from src/operator/tensor/./la_op_inline.h:27:
In file included from src/operator/tensor/../linalg.h:31:
src/operator/tensor/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/matrix_op.cc -o build/src/operator/tensor/matrix_op.o
In file included from src/operator/tensor/matrix_op.cc:25:
In file included from src/operator/tensor/./matrix_op-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/matrix_op.cc:25:
In file included from src/operator/tensor/./matrix_op-inl.h:33:
In file included from src/operator/tensor/../elemwise_op_common.h:37:
In file included from src/operator/tensor/.././operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/ordering_op.cc -o build/src/operator/tensor/ordering_op.o
In file included from src/operator/tensor/ordering_op.cc:25:
In file included from src/operator/tensor/./ordering_op-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/ordering_op.cc:25:
In file included from src/operator/tensor/./ordering_op-inl.h:34:
In file included from src/operator/tensor/../elemwise_op_common.h:37:
In file included from src/operator/tensor/.././operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/sparse_retain.cc -o build/src/operator/tensor/sparse_retain.o
In file included from src/operator/tensor/sparse_retain.cc:25:
In file included from src/operator/tensor/./sparse_retain-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/tensor/sparse_retain.cc:25:
In file included from src/operator/tensor/./sparse_retain-inl.h:30:
In file included from src/operator/tensor/./init_op.h:35:
In file included from src/operator/tensor/../elemwise_op_common.h:37:
In file included from src/operator/tensor/.././operator_common.h:40:
In file included from src/operator/tensor/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/tensor/square_sum.cc -o build/src/operator/tensor/square_sum.o
In file included from src/operator/tensor/square_sum.cc:24:
In file included from src/operator/tensor/./square_sum-inl.h:37:
In file included from src/operator/tensor/../mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/tensor/square_sum.cc:24:
In file included from src/operator/tensor/./square_sum-inl.h:37:
In file included from src/operator/tensor/../mxnet_op.h:29:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/c_api/c_api.cc -o build/src/c_api/c_api.o
In file included from src/c_api/c_api.cc:29:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/c_api/c_api.cc:30:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/c_api/c_api_error.cc -o build/src/c_api/c_api_error.o
In file included from src/c_api/c_api_error.cc:25:
In file included from src/c_api/./c_api_common.h:29:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/c_api/c_api_executor.cc -o build/src/c_api/c_api_executor.o
In file included from src/c_api/c_api_executor.cc:24:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/c_api/c_api_function.cc -o build/src/c_api/c_api_function.o
In file included from src/c_api/c_api_function.cc:26:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/c_api/c_api_ndarray.cc -o build/src/c_api/c_api_ndarray.o
In file included from src/c_api/c_api_ndarray.cc:26:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/c_api/c_api_ndarray.cc:35:
In file included from src/c_api/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/c_api/c_api_symbolic.cc -o build/src/c_api/c_api_symbolic.o
In file included from src/c_api/c_api_symbolic.cc:24:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/c_api/c_api_symbolic.cc:31:
In file included from src/c_api/../operator/operator_common.h:40:
In file included from src/c_api/../operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/c_api/c_predict_api.cc -o build/src/c_api/c_predict_api.o
In file included from src/c_api/c_predict_api.cc:27:
In file included from include/mxnet/executor.h:34:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/c_api/c_predict_api.cc:34:
In file included from src/c_api/../operator/operator_common.h:40:
In file included from src/c_api/../operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/common/mxrtc.cc -o build/src/common/mxrtc.o
In file included from src/common/mxrtc.cc:25:
In file included from include/mxnet/mxrtc.h:27:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/common/utils.cc -o build/src/common/utils.o
In file included from src/common/utils.cc:25:
In file included from src/common/./utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/common/utils.cc:25:
In file included from src/common/./utils.h:29:
In file included from include/mxnet/engine.h:34:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/engine/engine.cc -o build/src/engine/engine.o
In file included from src/engine/engine.cc:24:
In file included from include/mxnet/engine.h:34:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/engine/naive_engine.cc -o build/src/engine/naive_engine.o
In file included from src/engine/naive_engine.cc:27:
In file included from src/engine/./engine_impl.h:27:
In file included from include/mxnet/engine.h:34:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/engine/profiler.cc -o build/src/engine/profiler.o
In file included from src/engine/profiler.cc:26:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/engine/threaded_engine.cc -o build/src/engine/threaded_engine.o
In file included from src/engine/threaded_engine.cc:31:
In file included from src/engine/./threaded_engine.h:38:
In file included from src/engine/./engine_impl.h:27:
In file included from include/mxnet/engine.h:34:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/engine/threaded_engine_perdevice.cc -o build/src/engine/threaded_engine_perdevice.o
In file included from src/engine/threaded_engine_perdevice.cc:25:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/engine/threaded_engine_perdevice.cc:29:
In file included from src/engine/./threaded_engine.h:38:
In file included from src/engine/./engine_impl.h:27:
In file included from include/mxnet/engine.h:34:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/engine/threaded_engine_pooled.cc -o build/src/engine/threaded_engine_pooled.o
In file included from src/engine/threaded_engine_pooled.cc:29:
In file included from src/engine/./threaded_engine.h:38:
In file included from src/engine/./engine_impl.h:27:
In file included from include/mxnet/engine.h:34:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/executor/attach_op_execs_pass.cc -o build/src/executor/attach_op_execs_pass.o
In file included from src/executor/attach_op_execs_pass.cc:24:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/executor/attach_op_execs_pass.cc:29:
In file included from src/executor/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/executor/attach_op_resource_pass.cc -o build/src/executor/attach_op_resource_pass.o
In file included from src/executor/attach_op_resource_pass.cc:25:
In file included from include/mxnet/resource.h:28:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/executor/graph_executor.cc -o build/src/executor/graph_executor.o
In file included from src/executor/graph_executor.cc:24:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/executor/graph_executor.cc:33:
In file included from src/executor/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/executor/infer_graph_attr_pass.cc -o build/src/executor/infer_graph_attr_pass.o
In file included from src/executor/infer_graph_attr_pass.cc:25:
In file included from include/mxnet/op_attr_types.h:29:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op_attr_types.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/executor/inplace_addto_detect_pass.cc -o build/src/executor/inplace_addto_detect_pass.o
In file included from src/executor/inplace_addto_detect_pass.cc:24:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/image_aug_default.cc -o build/src/io/image_aug_default.o
In file included from src/io/image_aug_default.cc:24:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/io/image_aug_default.cc:29:
In file included from src/io/./image_augmenter.h:35:
In file included from src/io/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/image_det_aug_default.cc -o build/src/io/image_det_aug_default.o
In file included from src/io/image_det_aug_default.cc:24:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/io/image_det_aug_default.cc:30:
In file included from src/io/./image_augmenter.h:35:
In file included from src/io/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/image_io.cc -o build/src/io/image_io.o
In file included from src/io/image_io.cc:27:
In file included from include/mxnet/ndarray.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/io/image_io.cc:38:
In file included from src/io/../operator/elemwise_op_common.h:37:
In file included from src/io/../operator/./operator_common.h:40:
In file included from src/io/../operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/io.cc -o build/src/io/io.o
In file included from src/io/io.cc:21:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/io/io.cc:23:
In file included from src/io/./image_augmenter.h:35:
In file included from src/io/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/iter_csv.cc -o build/src/io/iter_csv.o
In file included from src/io/iter_csv.cc:24:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/iter_image_det_recordio.cc -o build/src/io/iter_image_det_recordio.o
In file included from src/io/iter_image_det_recordio.cc:24:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/io/iter_image_det_recordio.cc:27:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/iter_image_recordio.cc -o build/src/io/iter_image_recordio.o
In file included from src/io/iter_image_recordio.cc:24:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/io/iter_image_recordio.cc:27:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/iter_image_recordio_2.cc -o build/src/io/iter_image_recordio_2.o
In file included from src/io/iter_image_recordio_2.cc:25:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/io/iter_image_recordio_2.cc:32:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/iter_libsvm.cc -o build/src/io/iter_libsvm.o
In file included from src/io/iter_libsvm.cc:24:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/io/iter_mnist.cc -o build/src/io/iter_mnist.o
In file included from src/io/iter_mnist.cc:24:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/io/iter_mnist.cc:34:
In file included from src/io/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/kvstore/kvstore.cc -o build/src/kvstore/kvstore.o
In file included from src/kvstore/kvstore.cc:24:
In file included from include/mxnet/kvstore.h:33:
In file included from include/mxnet/./ndarray.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/kvstore/kvstore.cc:27:
In file included from src/kvstore/./kvstore_local.h:35:
In file included from src/kvstore/./comm.h:24:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/ndarray/autograd.cc -o build/src/ndarray/autograd.o
In file included from src/ndarray/autograd.cc:25:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/ndarray/ndarray.cc -o build/src/ndarray/ndarray.o
In file included from src/ndarray/ndarray.cc:28:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/ndarray/ndarray.cc:33:
In file included from src/ndarray/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/ndarray/ndarray_function.cc -o build/src/ndarray/ndarray_function.o
In file included from src/ndarray/ndarray_function.cc:26:
In file included from src/ndarray/./ndarray_function.h:29:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/ndarray/ndarray_function.cc:28:
In file included from src/ndarray/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/nnvm/legacy_json_util.cc -o build/src/nnvm/legacy_json_util.o
In file included from src/nnvm/legacy_json_util.cc:7:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/nnvm/legacy_op_util.cc -o build/src/nnvm/legacy_op_util.o
In file included from src/nnvm/legacy_op_util.cc:7:
In file included from include/mxnet/base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/activation.cc -o build/src/operator/activation.o
In file included from src/operator/activation.cc:25:
In file included from src/operator/./activation-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/activation.cc:25:
In file included from src/operator/./activation-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/batch_norm.cc -o build/src/operator/batch_norm.o
In file included from src/operator/batch_norm.cc:26:
In file included from src/operator/batch_norm-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/batch_norm.cc:26:
In file included from src/operator/batch_norm-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/batch_norm_v1.cc -o build/src/operator/batch_norm_v1.o
In file included from src/operator/batch_norm_v1.cc:26:
In file included from src/operator/batch_norm_v1-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/batch_norm_v1.cc:26:
In file included from src/operator/batch_norm_v1-inl.h:35:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/bilinear_sampler.cc -o build/src/operator/bilinear_sampler.o
In file included from src/operator/bilinear_sampler.cc:26:
In file included from src/operator/./bilinear_sampler-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/bilinear_sampler.cc:26:
In file included from src/operator/./bilinear_sampler-inl.h:35:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/concat.cc -o build/src/operator/concat.o
In file included from src/operator/concat.cc:26:
In file included from src/operator/./concat-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/concat.cc:26:
In file included from src/operator/./concat-inl.h:35:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/convolution.cc -o build/src/operator/convolution.o
In file included from src/operator/convolution.cc:26:
In file included from src/operator/./convolution-inl.h:29:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/convolution.cc:26:
In file included from src/operator/./convolution-inl.h:41:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/convolution.cc:26:
In file included from src/operator/./convolution-inl.h:43:
In file included from src/operator/./linalg.h:31:
src/operator/./c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that
lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/convolution_v1.cc -o build/src/operator/convolution_v1.o
In file included from src/operator/convolution_v1.cc:26:
In file included from src/operator/./convolution_v1-inl.h:28:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/convolution_v1.cc:26:
In file included from src/operator/./convolution_v1-inl.h:39:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/convolution_v1.cc:26:
In file included from src/operator/./convolution_v1-inl.h:40:
In file included from src/operator/./linalg.h:31:
src/operator/./c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that
lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/correlation.cc -o build/src/operator/correlation.o
In file included from src/operator/correlation.cc:25:
In file included from src/operator/./correlation-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/correlation.cc:25:
In file included from src/operator/./correlation-inl.h:35:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/crop.cc -o build/src/operator/crop.o
In file included from src/operator/crop.cc:26:
In file included from src/operator/./crop-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/crop.cc:26:
In file included from src/operator/./crop-inl.h:35:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/cross_device_copy.cc -o build/src/operator/cross_device_copy.o
In file included from src/operator/cross_device_copy.cc:25:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/cudnn_algoreg.cc -o build/src/operator/cudnn_algoreg.o
In file included from src/operator/cudnn_algoreg.cc:25:
In file included from src/operator/./cudnn_algoreg-inl.h:33:
In file included from src/operator/./convolution-inl.h:29:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/cudnn_algoreg.cc:25:
In file included from src/operator/./cudnn_algoreg-inl.h:33:
In file included from src/operator/./convolution-inl.h:41:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/cudnn_algoreg.cc:25:
In file included from src/operator/./cudnn_algoreg-inl.h:33:
In file included from src/operator/./convolution-inl.h:43:
In file included from src/operator/./linalg.h:31:
src/operator/./c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that
lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/cudnn_batch_norm.cc -o build/src/operator/cudnn_batch_norm.o
In file included from src/operator/cudnn_batch_norm.cc:26:
In file included from src/operator/./cudnn_batch_norm-inl.h:32:
In file included from src/operator/batch_norm-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/cudnn_batch_norm.cc:26:
In file included from src/operator/./cudnn_batch_norm-inl.h:32:
In file included from src/operator/batch_norm-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/deconvolution.cc -o build/src/operator/deconvolution.o
In file included from src/operator/deconvolution.cc:26:
In file included from src/operator/./deconvolution-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/deconvolution.cc:26:
In file included from src/operator/./deconvolution-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/deconvolution.cc:26:
In file included from src/operator/./deconvolution-inl.h:37:
In file included from src/operator/./linalg.h:31:
src/operator/./c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that
lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/dropout.cc -o build/src/operator/dropout.o
In file included from src/operator/dropout.cc:26:
In file included from src/operator/./dropout-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/dropout.cc:26:
In file included from src/operator/./dropout-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/fully_connected.cc -o build/src/operator/fully_connected.o
In file included from src/operator/fully_connected.cc:24:
In file included from src/operator/./fully_connected-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/fully_connected.cc:24:
In file included from src/operator/./fully_connected-inl.h:34:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/fully_connected.cc:24:
In file included from src/operator/./fully_connected-inl.h:36:
In file included from src/operator/linalg.h:31:
src/operator/./c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that
lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/grid_generator.cc -o build/src/operator/grid_generator.o
In file included from src/operator/grid_generator.cc:26:
In file included from src/operator/./grid_generator-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/grid_generator.cc:26:
In file included from src/operator/./grid_generator-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/grid_generator.cc:26:
In file included from src/operator/./grid_generator-inl.h:38:
In file included from src/operator/./linalg.h:31:
src/operator/./c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that
lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/identity_attach_KL_sparse_reg.cc -o build/src/operator/identity_attach_KL_sparse_reg.o
In file included from src/operator/identity_attach_KL_sparse_reg.cc:24:
In file included from src/operator/./identity_attach_KL_sparse_reg-inl.h:27:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/identity_attach_KL_sparse_reg.cc:24:
In file included from src/operator/./identity_attach_KL_sparse_reg-inl.h:34:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/instance_norm.cc -o build/src/operator/instance_norm.o
In file included from src/operator/instance_norm.cc:26:
In file included from src/operator/./instance_norm-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/instance_norm.cc:26:
In file included from src/operator/./instance_norm-inl.h:35:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/l2_normalization.cc -o build/src/operator/l2_normalization.o
In file included from src/operator/l2_normalization.cc:24:
In file included from src/operator/./l2_normalization-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/l2_normalization.cc:24:
In file included from src/operator/./l2_normalization-inl.h:34:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/leaky_relu.cc -o build/src/operator/leaky_relu.o
In file included from src/operator/leaky_relu.cc:26:
In file included from src/operator/./leaky_relu-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/leaky_relu.cc:26:
In file included from src/operator/./leaky_relu-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/loss_binary_op.cc -o build/src/operator/loss_binary_op.o
In file included from src/operator/loss_binary_op.cc:24:
In file included from src/operator/./loss_binary_op-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/loss_binary_op.cc:24:
In file included from src/operator/./loss_binary_op-inl.h:30:
In file included from src/operator/./elemwise_op_common.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/lrn.cc -o build/src/operator/lrn.o
In file included from src/operator/lrn.cc:26:
In file included from src/operator/./lrn-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/lrn.cc:26:
In file included from src/operator/./lrn-inl.h:34:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/make_loss.cc -o build/src/operator/make_loss.o
In file included from src/operator/make_loss.cc:24:
In file included from src/operator/./make_loss-inl.h:28:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/make_loss.cc:24:
In file included from src/operator/./make_loss-inl.h:35:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/operator.cc -o build/src/operator/operator.o
In file included from src/operator/operator.cc:26:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/operator_util.cc -o build/src/operator/operator_util.o
In file included from src/operator/operator_util.cc:24:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/operator_util.cc:30:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/optimizer_op.cc -o build/src/operator/optimizer_op.o
In file included from src/operator/optimizer_op.cc:25:
In file included from src/operator/./optimizer_op-inl.h:28:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/optimizer_op.cc:25:
In file included from src/operator/./optimizer_op-inl.h:35:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/pad.cc -o build/src/operator/pad.o
In file included from src/operator/pad.cc:25:
In file included from src/operator/./pad-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/pad.cc:25:
In file included from src/operator/./pad-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/pooling.cc -o build/src/operator/pooling.o
In file included from src/operator/pooling.cc:25:
In file included from src/operator/./pooling-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/pooling.cc:25:
In file included from src/operator/./pooling-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/pooling_v1.cc -o build/src/operator/pooling_v1.o
In file included from src/operator/pooling_v1.cc:25:
In file included from src/operator/./pooling_v1-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/pooling_v1.cc:25:
In file included from src/operator/./pooling_v1-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/regression_output.cc -o build/src/operator/regression_output.o
In file included from src/operator/regression_output.cc:24:
In file included from src/operator/./regression_output-inl.h:28:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/regression_output.cc:24:
In file included from src/operator/./regression_output-inl.h:33:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/rnn.cc -o build/src/operator/rnn.o
In file included from src/operator/rnn.cc:26:
In file included from src/operator/./rnn-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/rnn.cc:26:
In file included from src/operator/./rnn-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/roi_pooling.cc -o build/src/operator/roi_pooling.o
In file included from src/operator/roi_pooling.cc:25:
In file included from src/operator/./roi_pooling-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/roi_pooling.cc:25:
In file included from src/operator/./roi_pooling-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/sequence_last.cc -o build/src/operator/sequence_last.o
In file included from src/operator/sequence_last.cc:25:
In file included from src/operator/./sequence_last-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/sequence_last.cc:25:
In file included from src/operator/./sequence_last-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/sequence_mask.cc -o build/src/operator/sequence_mask.o
In file included from src/operator/sequence_mask.cc:25:
In file included from src/operator/./sequence_mask-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/sequence_mask.cc:25:
In file included from src/operator/./sequence_mask-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/sequence_reverse.cc -o build/src/operator/sequence_reverse.o
In file included from src/operator/sequence_reverse.cc:25:
In file included from src/operator/./sequence_reverse-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/sequence_reverse.cc:25:
In file included from src/operator/./sequence_reverse-inl.h:39:
In file included from src/operator/./mxnet_op.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/slice_channel.cc -o build/src/operator/slice_channel.o
In file included from src/operator/slice_channel.cc:26:
In file included from src/operator/./slice_channel-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/slice_channel.cc:26:
In file included from src/operator/./slice_channel-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/softmax_activation.cc -o build/src/operator/softmax_activation.o
In file included from src/operator/softmax_activation.cc:25:
In file included from src/operator/./softmax_activation-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/softmax_activation.cc:25:
In file included from src/operator/./softmax_activation-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/softmax_output.cc -o build/src/operator/softmax_output.o
In file included from src/operator/softmax_output.cc:25:
In file included from src/operator/./softmax_output-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/softmax_output.cc:25:
In file included from src/operator/./softmax_output-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/spatial_transformer.cc -o build/src/operator/spatial_transformer.o
In file included from src/operator/spatial_transformer.cc:26:
In file included from src/operator/./spatial_transformer-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/spatial_transformer.cc:26:
In file included from src/operator/./spatial_transformer-inl.h:37:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/spatial_transformer.cc:26:
In file included from src/operator/./spatial_transformer-inl.h:38:
In file included from src/operator/./linalg.h:31:
src/operator/./c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that
lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/svm_output.cc -o build/src/operator/svm_output.o
In file included from src/operator/svm_output.cc:25:
In file included from src/operator/./svm_output-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/svm_output.cc:25:
In file included from src/operator/./svm_output-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/swapaxis.cc -o build/src/operator/swapaxis.o
In file included from src/operator/swapaxis.cc:26:
In file included from src/operator/./swapaxis-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/swapaxis.cc:26:
In file included from src/operator/./swapaxis-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/operator/upsampling.cc -o build/src/operator/upsampling.o
In file included from src/operator/upsampling.cc:26:
In file included from src/operator/./upsampling-inl.h:30:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/upsampling.cc:26:
In file included from src/operator/./upsampling-inl.h:36:
In file included from src/operator/./operator_common.h:40:
In file included from src/operator/../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/upsampling.cc:28:
In file included from src/operator/./deconvolution-inl.h:37:
In file included from src/operator/./linalg.h:31:
src/operator/./c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that
lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/storage/storage.cc -o build/src/storage/storage.o
In file included from src/storage/storage.cc:22:
In file included from include/mxnet/storage.h:28:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/initialize.cc -o build/src/initialize.o
In file included from src/initialize.cc:26:
In file included from include/mxnet/engine.h:34:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -c -DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0 -MMD -c src/resource.cc -o build/src/resource.o
In file included from src/resource.cc:26:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
cd /Users/sumner/Downloads/mxnet/dmlc-core; /Library/Developer/CommandLineTools/usr/bin/make libdmlc.a USE_SSE=1 config=/Users/sumner/Downloads/mxnet/config.mk; cd /Users/sumner/Downloads/mxnet
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o line_split.o src/io/line_split.cc
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o indexed_recordio_split.o src/io/indexed_recordio_split.cc
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o recordio_split.o src/io/recordio_split.cc
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o input_split_base.o src/io/input_split_base.cc
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o io.o src/io.cc
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o local_filesys.o src/io/local_filesys.cc
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o data.o src/data.cc
In file included from src/data.cc:12:
In file included from src/data/disk_row_iter.h:19:
In file included from src/data/./libsvm_parser.h:13:
In file included from src/data/./text_parser.h:11:
include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled into single-thread code. Use
OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
1 warning generated.
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o recordio.o src/recordio.cc
g++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0 -msse2 -o config.o src/config.cc
ar cr libdmlc.a line_split.o indexed_recordio_split.o recordio_split.o input_split_base.o io.o local_filesys.o data.o recordio.o config.o
cd /Users/sumner/Downloads/mxnet/nnvm; /Library/Developer/CommandLineTools/usr/bin/make lib/libnnvm.a DMLC_CORE_PATH=/Users/sumner/Downloads/mxnet/dmlc-core; cd /Users/sumner/Downloads/mxnet
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/c_api/c_api_error.o src/c_api/c_api_error.cc >build/src/c_api/c_api_error.d
In file included from src/c_api/c_api_error.cc:6:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/c_api/c_api_error.cc -o build/src/c_api/c_api_error.o
In file included from src/c_api/c_api_error.cc:6:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/c_api/c_api_graph.o src/c_api/c_api_graph.cc >build/src/c_api/c_api_graph.d
In file included from src/c_api/c_api_graph.cc:7:
In file included from include/nnvm/op.h:16:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/c_api/c_api_graph.cc -o build/src/c_api/c_api_graph.o
In file included from src/c_api/c_api_graph.cc:7:
In file included from include/nnvm/op.h:16:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/c_api/c_api_symbolic.o src/c_api/c_api_symbolic.cc >build/src/c_api/c_api_symbolic.d
In file included from src/c_api/c_api_symbolic.cc:7:
In file included from include/nnvm/op.h:16:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/c_api/c_api_symbolic.cc -o build/src/c_api/c_api_symbolic.o
In file included from src/c_api/c_api_symbolic.cc:7:
In file included from include/nnvm/op.h:16:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/core/graph.o src/core/graph.cc >build/src/core/graph.d
In file included from src/core/graph.cc:6:
In file included from include/nnvm/graph.h:15:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/core/graph.cc -o build/src/core/graph.o
In file included from src/core/graph.cc:6:
In file included from include/nnvm/graph.h:15:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/core/node.o src/core/node.cc >build/src/core/node.d
In file included from src/core/node.cc:6:
In file included from include/nnvm/node.h:13:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/core/node.cc -o build/src/core/node.o
In file included from src/core/node.cc:6:
In file included from include/nnvm/node.h:13:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/core/op.o src/core/op.cc >build/src/core/op.d
In file included from src/core/op.cc:6:
In file included from include/nnvm/base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/core/op.cc -o build/src/core/op.o
In file included from src/core/op.cc:6:
In file included from include/nnvm/base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/core/pass.o src/core/pass.cc >build/src/core/pass.d
In file included from src/core/pass.cc:6:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/core/pass.cc -o build/src/core/pass.o
In file included from src/core/pass.cc:6:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/core/symbolic.o src/core/symbolic.cc >build/src/core/symbolic.d
In file included from src/core/symbolic.cc:6:
In file included from include/nnvm/graph.h:15:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/core/symbolic.cc -o build/src/core/symbolic.o
In file included from src/core/symbolic.cc:6:
In file included from include/nnvm/graph.h:15:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/pass/gradient.o src/pass/gradient.cc >build/src/pass/gradient.d
In file included from src/pass/gradient.cc:7:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/pass/gradient.cc -o build/src/pass/gradient.o
In file included from src/pass/gradient.cc:7:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/pass/infer_shape_type.o src/pass/infer_shape_type.cc >build/src/pass/infer_shape_type.d
In file included from src/pass/infer_shape_type.cc:6:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/pass/infer_shape_type.cc -o build/src/pass/infer_shape_type.o
In file included from src/pass/infer_shape_type.cc:6:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/pass/order_mutation.o src/pass/order_mutation.cc >build/src/pass/order_mutation.d
In file included from src/pass/order_mutation.cc:8:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/pass/order_mutation.cc -o build/src/pass/order_mutation.o
In file included from src/pass/order_mutation.cc:8:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/pass/place_device.o src/pass/place_device.cc >build/src/pass/place_device.d
In file included from src/pass/place_device.cc:7:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/pass/place_device.cc -o build/src/pass/place_device.o
In file included from src/pass/place_device.cc:7:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/pass/plan_memory.o src/pass/plan_memory.cc >build/src/pass/plan_memory.d
In file included from src/pass/plan_memory.cc:6:
In file included from include/nnvm/graph.h:15:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/pass/plan_memory.cc -o build/src/pass/plan_memory.o
In file included from src/pass/plan_memory.cc:6:
In file included from include/nnvm/graph.h:15:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -MM -MT build/src/pass/saveload_json.o src/pass/saveload_json.cc >build/src/pass/saveload_json.d
In file included from src/pass/saveload_json.cc:6:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
g++ -c -std=c++11 -Wall -O2 -Iinclude -fPIC -I/Users/sumner/Downloads/mxnet/dmlc-core/include -I/Users/sumner/Downloads/mxnet/dmlc-core/include -c src/pass/saveload_json.cc -o build/src/pass/saveload_json.o
In file included from src/pass/saveload_json.cc:6:
In file included from include/nnvm/pass.h:11:
In file included from include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
1 warning generated.
ar crv lib/libnnvm.a build/src/c_api/c_api_error.o build/src/c_api/c_api_graph.o build/src/c_api/c_api_symbolic.o build/src/core/graph.o build/src/core/node.o build/src/core/op.o build/src/core/pass.o build/src/core/symbolic.o build/src/pass/gradient.o build/src/pass/infer_shape_type.o build/src/pass/order_mutation.o build/src/pass/place_device.o build/src/pass/plan_memory.o build/src/pass/saveload_json.o
a - build/src/c_api/c_api_error.o
a - build/src/c_api/c_api_graph.o
a - build/src/c_api/c_api_symbolic.o
a - build/src/core/graph.o
a - build/src/core/node.o
a - build/src/core/op.o
a - build/src/core/pass.o
a - build/src/core/symbolic.o
a - build/src/pass/gradient.o
a - build/src/pass/infer_shape_type.o
a - build/src/pass/order_mutation.o
a - build/src/pass/place_device.o
a - build/src/pass/plan_memory.o
a - build/src/pass/saveload_json.o
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/count_sketch_gpu.o src/operator/contrib/count_sketch.cu >build/src/operator/contrib/count_sketch_gpu.d
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/count_sketch_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/count_sketch.cu
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/count_sketch.cu:25:
In file included from src/operator/contrib/./count_sketch-inl.h:35:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
208 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/ctc_loss_gpu.o src/operator/contrib/ctc_loss.cu >build/src/operator/contrib/ctc_loss_gpu.d
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/ctc_loss_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/ctc_loss.cu
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ctc_loss.cu:26:
In file included from src/operator/contrib/./ctc_loss-inl.h:40:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
208 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/deformable_convolution_gpu.o src/operator/contrib/deformable_convolution.cu >build/src/operator/contrib/deformable_convolution_gpu.d
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/deformable_convolution_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/deformable_convolution.cu
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:32:
In file included from include/mxnet/io.h:33:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:44:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
In file included from src/operator/contrib/deformable_convolution.cu:28:
In file included from src/operator/contrib/./deformable_convolution-inl.h:47:
In file included from src/operator/contrib/../linalg.h:31:
src/operator/contrib/.././c_lapack_api.h:243:11: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available." \
^
3 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
src/operator/contrib/.././c_lapack_api.h:243:9: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that lapack library is inst...
^
3 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
src/operator/contrib/.././c_lapack_api.h:243:9: warning: Warning: lapack usage not enabled, linalg-operators will not be available.
Ensure that lapack library is installed and build with USE_LAPACK=1 to get lapack functionalities. [-W#pragma-messages]
#pragma message("Warning: lapack usage not enabled, linalg-operators will not be available. Ensure that lapack library is inst...
^
src/operator/contrib/../linalg_impl.h:147:471: warning: expression result unused [-Wunused-value]
...147).stream() << ("Check notnull: s"))) << (' '))), s : s; check_gemm(A, B, C, alpha, beta, tA, tB); { cublasStatus_t e = cub...
^
src/operator/contrib/../linalg_impl.h:148:477: warning: expression result unused [-Wunused-value]
...148).stream() << ("Check notnull: s"))) << (' '))), s : s; check_gemm(A, B, C, alpha, beta, tA, tB); { cublasStatus_t e = cub...
^
src/operator/contrib/../linalg_impl.h:160:139: warning: expression result unused [-Wunused-value]
...((((dmlc::LogMessageFatal("src/operator/contrib/../linalg_impl.h", 160).stream() << ("Check notnull: s"))) << (' '))), s : s;
^
src/operator/contrib/../linalg_impl.h:233:477: warning: expression result unused [-Wunused-value]
...233).stream() << ("Check notnull: s"))) << (' '))), s : s; linalg_check_batch_size(A.size(0), B.size(0), C.size(0)); check_ge...
^
src/operator/contrib/../linalg_impl.h:234:483: warning: expression result unused [-Wunused-value]
...234).stream() << ("Check notnull: s"))) << (' '))), s : s; linalg_check_batch_size(A.size(0), B.size(0), C.size(0)); check_ge...
^
src/operator/contrib/../linalg_impl.h:322:434: warning: expression result unused [-Wunused-value]
...322).stream() << ("Check notnull: s"))) << (' '))), s : s; check_trsm(A, B, alpha, rightside, lower, transpose); { cublasStat...
^
src/operator/contrib/../linalg_impl.h:323:438: warning: expression result unused [-Wunused-value]
...323).stream() << ("Check notnull: s"))) << (' '))), s : s; check_trsm(A, B, alpha, rightside, lower, transpose); { cublasStat...
^
src/operator/contrib/../linalg_impl.h:354:440: warning: expression result unused [-Wunused-value]
...354).stream() << ("Check notnull: s"))) << (' '))), s : s; linalg_check_batch_size(A.size(0), B.size(0), B.size(0)); check_tr...
^
src/operator/contrib/../linalg_impl.h:355:444: warning: expression result unused [-Wunused-value]
...355).stream() << ("Check notnull: s"))) << (' '))), s : s; linalg_check_batch_size(A.size(0), B.size(0), B.size(0)); check_tr...
^
src/operator/contrib/../linalg_impl.h:526:434: warning: expression result unused [-Wunused-value]
...526).stream() << ("Check notnull: s"))) << (' '))), s : s; check_trmm(A, B, alpha, rightside, lower, transpose); { cublasStat...
^
src/operator/contrib/../linalg_impl.h:527:438: warning: expression result unused [-Wunused-value]
...527).stream() << ("Check notnull: s"))) << (' '))), s : s; check_trmm(A, B, alpha, rightside, lower, transpose); { cublasStat...
^
src/operator/contrib/../linalg_impl.h:581:313: warning: expression result unused [-Wunused-value]
...581).stream() << ("Check notnull: s"))) << (' '))), s : s; int buffsize(0); { cusolverStatus_t e = cusolverDnSpotrf_bufferSiz...
^
src/operator/contrib/../linalg_impl.h:582:314: warning: expression result unused [-Wunused-value]
...582).stream() << ("Check notnull: s"))) << (' '))), s : s; int buffsize(0); { cusolverStatus_t e = cusolverDnDpotrf_bufferSiz...
^
src/operator/contrib/../linalg_impl.h:601:339: warning: expression result unused [-Wunused-value]
...601).stream() << ("Check notnull: s"))) << (' '))), s : s; check_potrf(A, lower); int buffsize(linalg_potrf_buffsize(A, lower...
^
src/operator/contrib/../linalg_impl.h:602:341: warning: expression result unused [-Wunused-value]
...602).stream() << ("Check notnull: s"))) << (' '))), s : s; check_potrf(A, lower); int buffsize(linalg_potrf_buffsize(A, lower...
^
src/operator/contrib/../linalg_impl.h:624:345: warning: expression result unused [-Wunused-value]
...624).stream() << ("Check notnull: s"))) << (' '))), s : s; if (dmlc::LogCheckError _check_err = dmlc::LogCheck_GT(A.size(0), ...
^
src/operator/contrib/../linalg_impl.h:625:347: warning: expression result unused [-Wunused-value]
...625).stream() << ("Check notnull: s"))) << (' '))), s : s; if (dmlc::LogCheckError _check_err = dmlc::LogCheck_GT(A.size(0), ...
^
src/operator/contrib/../linalg_impl.h:694:320: warning: expression result unused [-Wunused-value]
...694).stream() << ("Check notnull: s"))) << (' '))), s : s; check_potri(A, lower); mxnet::Storage::Handle buffer = Storage::Ge...
^
src/operator/contrib/../linalg_impl.h:695:322: warning: expression result unused [-Wunused-value]
...695).stream() << ("Check notnull: s"))) << (' '))), s : s; check_potri(A, lower); mxnet::Storage::Handle buffer = Storage::Ge...
^
src/operator/contrib/../linalg_impl.h:717:326: warning: expression result unused [-Wunused-value]
...717).stream() << ("Check notnull: s"))) << (' '))), s : s; if (dmlc::LogCheckError _check_err = dmlc::LogCheck_GT(A.size(0), ...
^
src/operator/contrib/../linalg_impl.h:718:328: warning: expression result unused [-Wunused-value]
...718).stream() << ("Check notnull: s"))) << (' '))), s : s; if (dmlc::LogCheckError _check_err = dmlc::LogCheck_GT(A.size(0), ...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
230 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/deformable_psroi_pooling_gpu.o src/operator/contrib/deformable_psroi_pooling.cu >build/src/operator/contrib/deformable_psroi_pooling_gpu.d
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/deformable_psroi_pooling_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/deformable_psroi_pooling.cu
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:32:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/deformable_psroi_pooling.cu:27:
In file included from src/operator/contrib/./deformable_psroi_pooling-inl.h:38:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
208 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/dequantize_gpu.o src/operator/contrib/dequantize.cu >build/src/operator/contrib/dequantize_gpu.d
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/dequantize_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/dequantize.cu
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:27:
In file included from include/mxnet/operator_util.h:42:
In file included from include/mxnet/./base.h:33:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/op.h:16:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/dequantize.cu:24:
In file included from src/operator/contrib/./dequantize-inl.h:30:
In file included from src/operator/contrib/../elemwise_op_common.h:37:
In file included from src/operator/contrib/.././operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
208 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/fft_gpu.o src/operator/contrib/fft.cu >build/src/operator/contrib/fft_gpu.d
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/fft_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/fft.cu
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/fft.cu:25:
In file included from src/operator/contrib/./fft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
208 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/ifft_gpu.o src/operator/contrib/ifft.cu >build/src/operator/contrib/ifft_gpu.d
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/ifft_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/ifft.cu
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:31:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/ifft.cu:26:
In file included from src/operator/contrib/./ifft-inl.h:34:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
208 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/multi_proposal_gpu.o src/operator/contrib/multi_proposal.cu >build/src/operator/contrib/multi_proposal_gpu.d
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/multi_proposal_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/multi_proposal.cu
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multi_proposal.cu:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multi_proposal.cu:43:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
207 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/multibox_detection_gpu.o src/operator/contrib/multibox_detection.cu >build/src/operator/contrib/multibox_detection_gpu.d
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/multibox_detection_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/multibox_detection.cu
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_detection.cu:25:
In file included from src/operator/contrib/./multibox_detection-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
208 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/multibox_prior_gpu.o src/operator/contrib/multibox_prior.cu >build/src/operator/contrib/multibox_prior_gpu.d
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/multibox_prior_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/multibox_prior.cu
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_prior.cu:26:
In file included from src/operator/contrib/./multibox_prior-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
2 warnings generated.
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, project will be compiled into single-thread code. Use OpenMP-enabled compil...
^
/usr/local/cuda/include/cuComplex.h:88:30: warning: unused function 'cuConjf' [-Wunused-function]
static inline cuFloatComplex cuConjf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:92:30: warning: unused function 'cuCaddf' [-Wunused-function]
static inline cuFloatComplex cuCaddf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:99:30: warning: unused function 'cuCsubf' [-Wunused-function]
static inline cuFloatComplex cuCsubf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:111:30: warning: unused function 'cuCmulf' [-Wunused-function]
static inline cuFloatComplex cuCmulf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:127:30: warning: unused function 'cuCdivf' [-Wunused-function]
static inline cuFloatComplex cuCdivf(cuFloatComplex x, cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:152:21: warning: unused function 'cuCabsf' [-Wunused-function]
static inline float cuCabsf(cuFloatComplex x)
^
/usr/local/cuda/include/cuComplex.h:197:31: warning: unused function 'cuConj' [-Wunused-function]
static inline cuDoubleComplex cuConj(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:202:31: warning: unused function 'cuCadd' [-Wunused-function]
static inline cuDoubleComplex cuCadd(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:209:31: warning: unused function 'cuCsub' [-Wunused-function]
static inline cuDoubleComplex cuCsub(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:221:31: warning: unused function 'cuCmul' [-Wunused-function]
static inline cuDoubleComplex cuCmul(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:237:31: warning: unused function 'cuCdiv' [-Wunused-function]
static inline cuDoubleComplex cuCdiv(cuDoubleComplex x, cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:260:22: warning: unused function 'cuCabs' [-Wunused-function]
static inline double cuCabs(cuDoubleComplex x)
^
/usr/local/cuda/include/cuComplex.h:297:31: warning: unused function 'cuComplexFloatToDouble' [-Wunused-function]
static inline cuDoubleComplex cuComplexFloatToDouble(cuFloatComplex
^
/usr/local/cuda/include/cuComplex.h:303:30: warning: unused function 'cuComplexDoubleToFloat' [-Wunused-function]
static inline cuFloatComplex cuComplexDoubleToFloat(cuDoubleComplex
^
/usr/local/cuda/include/cuComplex.h:310:25: warning: unused function 'cuCfmaf' [-Wunused-function]
static inline cuComplex cuCfmaf(cuComplex x, cuComplex y, cuComplex d)
^
/usr/local/cuda/include/cuComplex.h:324:31: warning: unused function 'cuCfma' [-Wunused-function]
static inline cuDoubleComplex cuCfma(cuDoubleComplex x, cuDoubleComplex y, cuDoubleComplex d)
^
/usr/local/cuda/include/cuda_fp16.h:2305:22: warning: unused function '__float2half' [-Wunused-function]
static inline __half __float2half(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2311:22: warning: unused function '__float2half_rz' [-Wunused-function]
static inline __half __float2half_rz(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2317:22: warning: unused function '__float2half_rd' [-Wunused-function]
static inline __half __float2half_rd(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2323:22: warning: unused function '__float2half_ru' [-Wunused-function]
static inline __half __float2half_ru(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2329:21: warning: unused function '__half2float' [-Wunused-function]
static inline float __half2float(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:1931:19: warning: unused function '__half2int_rn' [-Wunused-function]
static inline int __half2int_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1937:19: warning: unused function '__half2int_rz' [-Wunused-function]
static inline int __half2int_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1943:19: warning: unused function '__half2int_rd' [-Wunused-function]
static inline int __half2int_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1949:19: warning: unused function '__half2int_ru' [-Wunused-function]
static inline int __half2int_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1955:22: warning: unused function '__int2half_rn' [-Wunused-function]
static inline __half __int2half_rn(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1961:22: warning: unused function '__int2half_rz' [-Wunused-function]
static inline __half __int2half_rz(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1967:22: warning: unused function '__int2half_rd' [-Wunused-function]
static inline __half __int2half_rd(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1973:22: warning: unused function '__int2half_ru' [-Wunused-function]
static inline __half __int2half_ru(int i)
^
/usr/local/cuda/include/cuda_fp16.h:1980:21: warning: unused function '__half2short_rn' [-Wunused-function]
static inline short __half2short_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1986:21: warning: unused function '__half2short_rz' [-Wunused-function]
static inline short __half2short_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1992:21: warning: unused function '__half2short_rd' [-Wunused-function]
static inline short __half2short_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:1998:21: warning: unused function '__half2short_ru' [-Wunused-function]
static inline short __half2short_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2004:22: warning: unused function '__short2half_rn' [-Wunused-function]
static inline __half __short2half_rn(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2010:22: warning: unused function '__short2half_rz' [-Wunused-function]
static inline __half __short2half_rz(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2016:22: warning: unused function '__short2half_rd' [-Wunused-function]
static inline __half __short2half_rd(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2022:22: warning: unused function '__short2half_ru' [-Wunused-function]
static inline __half __short2half_ru(short i)
^
/usr/local/cuda/include/cuda_fp16.h:2029:24: warning: unused function '__half2uint_rn' [-Wunused-function]
static inline unsigned __half2uint_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2035:24: warning: unused function '__half2uint_rz' [-Wunused-function]
static inline unsigned __half2uint_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2041:24: warning: unused function '__half2uint_rd' [-Wunused-function]
static inline unsigned __half2uint_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2047:24: warning: unused function '__half2uint_ru' [-Wunused-function]
static inline unsigned __half2uint_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2053:22: warning: unused function '__uint2half_rn' [-Wunused-function]
static inline __half __uint2half_rn(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2059:22: warning: unused function '__uint2half_rz' [-Wunused-function]
static inline __half __uint2half_rz(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2065:22: warning: unused function '__uint2half_rd' [-Wunused-function]
static inline __half __uint2half_rd(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2071:22: warning: unused function '__uint2half_ru' [-Wunused-function]
static inline __half __uint2half_ru(unsigned i)
^
/usr/local/cuda/include/cuda_fp16.h:2078:30: warning: unused function '__half2ushort_rn' [-Wunused-function]
static inline unsigned short __half2ushort_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2084:30: warning: unused function '__half2ushort_rz' [-Wunused-function]
static inline unsigned short __half2ushort_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2090:30: warning: unused function '__half2ushort_rd' [-Wunused-function]
static inline unsigned short __half2ushort_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2096:30: warning: unused function '__half2ushort_ru' [-Wunused-function]
static inline unsigned short __half2ushort_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2102:22: warning: unused function '__ushort2half_rn' [-Wunused-function]
static inline __half __ushort2half_rn(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2108:22: warning: unused function '__ushort2half_rz' [-Wunused-function]
static inline __half __ushort2half_rz(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2114:22: warning: unused function '__ushort2half_rd' [-Wunused-function]
static inline __half __ushort2half_rd(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2120:22: warning: unused function '__ushort2half_ru' [-Wunused-function]
static inline __half __ushort2half_ru(unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2127:34: warning: unused function '__half2ull_rn' [-Wunused-function]
static inline unsigned long long __half2ull_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2133:34: warning: unused function '__half2ull_rz' [-Wunused-function]
static inline unsigned long long __half2ull_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2139:34: warning: unused function '__half2ull_rd' [-Wunused-function]
static inline unsigned long long __half2ull_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2145:34: warning: unused function '__half2ull_ru' [-Wunused-function]
static inline unsigned long long __half2ull_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2151:22: warning: unused function '__ull2half_rn' [-Wunused-function]
static inline __half __ull2half_rn(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2157:22: warning: unused function '__ull2half_rz' [-Wunused-function]
static inline __half __ull2half_rz(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2163:22: warning: unused function '__ull2half_rd' [-Wunused-function]
static inline __half __ull2half_rd(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2169:22: warning: unused function '__ull2half_ru' [-Wunused-function]
static inline __half __ull2half_ru(unsigned long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2176:25: warning: unused function '__half2ll_rn' [-Wunused-function]
static inline long long __half2ll_rn(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2182:25: warning: unused function '__half2ll_rz' [-Wunused-function]
static inline long long __half2ll_rz(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2188:25: warning: unused function '__half2ll_rd' [-Wunused-function]
static inline long long __half2ll_rd(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2194:25: warning: unused function '__half2ll_ru' [-Wunused-function]
static inline long long __half2ll_ru(__half h)
^
/usr/local/cuda/include/cuda_fp16.h:2200:22: warning: unused function '__ll2half_rn' [-Wunused-function]
static inline __half __ll2half_rn(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2206:22: warning: unused function '__ll2half_rz' [-Wunused-function]
static inline __half __ll2half_rz(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2212:22: warning: unused function '__ll2half_rd' [-Wunused-function]
static inline __half __ll2half_rd(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2218:22: warning: unused function '__ll2half_ru' [-Wunused-function]
static inline __half __ll2half_ru(long long i)
^
/usr/local/cuda/include/cuda_fp16.h:2225:22: warning: unused function 'htrunc' [-Wunused-function]
static inline __half htrunc(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2231:22: warning: unused function 'hceil' [-Wunused-function]
static inline __half hceil(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2237:22: warning: unused function 'hfloor' [-Wunused-function]
static inline __half hfloor(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2243:22: warning: unused function 'hrint' [-Wunused-function]
static inline __half hrint(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2250:23: warning: unused function 'h2trunc' [-Wunused-function]
static inline __half2 h2trunc(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2260:23: warning: unused function 'h2ceil' [-Wunused-function]
static inline __half2 h2ceil(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2270:23: warning: unused function 'h2floor' [-Wunused-function]
static inline __half2 h2floor(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2280:23: warning: unused function 'h2rint' [-Wunused-function]
static inline __half2 h2rint(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2335:23: warning: unused function '__float2half2_rn' [-Wunused-function]
static inline __half2 __float2half2_rn(const float f)
^
/usr/local/cuda/include/cuda_fp16.h:2343:23: warning: unused function '__floats2half2_rn' [-Wunused-function]
static inline __half2 __floats2half2_rn(const float f1, const float f2)
^
/usr/local/cuda/include/cuda_fp16.h:2352:23: warning: unused function '__float22half2_rn' [-Wunused-function]
static inline __half2 __float22half2_rn(const float2 f)
^
/usr/local/cuda/include/cuda_fp16.h:2291:22: warning: unused function '__half22float2' [-Wunused-function]
static inline float2 __half22float2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2357:21: warning: unused function '__low2float' [-Wunused-function]
static inline float __low2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2438:23: warning: unused function '__half2half2' [-Wunused-function]
static inline __half2 __half2half2(const __half lh)
^
/usr/local/cuda/include/cuda_fp16.h:2365:21: warning: unused function '__high2float' [-Wunused-function]
static inline float __high2float(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2445:23: warning: unused function '__lowhigh2highlow' [-Wunused-function]
static inline __half2 __lowhigh2highlow(const __half2 lh)
^
/usr/local/cuda/include/cuda_fp16.h:2373:23: warning: unused function '__lows2half2' [-Wunused-function]
static inline __half2 __lows2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2382:23: warning: unused function '__highs2half2' [-Wunused-function]
static inline __half2 __highs2half2(const __half2 l, const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2423:22: warning: unused function '__high2half' [-Wunused-function]
static inline __half __high2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2391:22: warning: unused function '__low2half' [-Wunused-function]
static inline __half __low2half(const __half2 h)
^
/usr/local/cuda/include/cuda_fp16.h:2399:19: warning: unused function '__hisinf' [-Wunused-function]
static inline int __hisinf(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2431:23: warning: unused function '__halves2half2' [-Wunused-function]
static inline __half2 __halves2half2(const __half l, const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2407:23: warning: unused function '__low2half2' [-Wunused-function]
static inline __half2 __low2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2415:23: warning: unused function '__high2half2' [-Wunused-function]
static inline __half2 __high2half2(const __half2 l)
^
/usr/local/cuda/include/cuda_fp16.h:2453:21: warning: unused function '__half_as_short' [-Wunused-function]
static inline short __half_as_short(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2457:30: warning: unused function '__half_as_ushort' [-Wunused-function]
static inline unsigned short __half_as_ushort(const __half h)
^
/usr/local/cuda/include/cuda_fp16.h:2461:22: warning: unused function '__short_as_half' [-Wunused-function]
static inline __half __short_as_half(const short i)
^
/usr/local/cuda/include/cuda_fp16.h:2467:22: warning: unused function '__ushort_as_half' [-Wunused-function]
static inline __half __ushort_as_half(const unsigned short i)
^
/usr/local/cuda/include/cuda_fp16.h:2484:23: warning: unused function '__shfl' [-Wunused-function]
static inline __half2 __shfl(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2491:23: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half2 __shfl_up(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2498:23: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half2 __shfl_down(__half2 var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2505:23: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half2 __shfl_xor(__half2 var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2513:22: warning: unused function '__shfl' [-Wunused-function]
static inline __half __shfl(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2519:22: warning: unused function '__shfl_up' [-Wunused-function]
static inline __half __shfl_up(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2525:22: warning: unused function '__shfl_down' [-Wunused-function]
static inline __half __shfl_down(__half var, unsigned delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2531:22: warning: unused function '__shfl_xor' [-Wunused-function]
static inline __half __shfl_xor(__half var, int delta, int width)
^
/usr/local/cuda/include/cuda_fp16.h:2548:23: warning: unused function '__ldg' [-Wunused-function]
static inline __half2 __ldg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2554:22: warning: unused function '__ldg' [-Wunused-function]
static inline __half __ldg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2560:23: warning: unused function '__ldcg' [-Wunused-function]
static inline __half2 __ldcg(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2566:22: warning: unused function '__ldcg' [-Wunused-function]
static inline __half __ldcg(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2572:23: warning: unused function '__ldca' [-Wunused-function]
static inline __half2 __ldca(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2578:22: warning: unused function '__ldca' [-Wunused-function]
static inline __half __ldca(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2584:23: warning: unused function '__ldcs' [-Wunused-function]
static inline __half2 __ldcs(const __half2 *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2590:22: warning: unused function '__ldcs' [-Wunused-function]
static inline __half __ldcs(const __half *ptr)
^
/usr/local/cuda/include/cuda_fp16.h:2608:23: warning: unused function '__heq2' [-Wunused-function]
static inline __half2 __heq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2612:23: warning: unused function '__hne2' [-Wunused-function]
static inline __half2 __hne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2616:23: warning: unused function '__hle2' [-Wunused-function]
static inline __half2 __hle2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2620:23: warning: unused function '__hge2' [-Wunused-function]
static inline __half2 __hge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2624:23: warning: unused function '__hlt2' [-Wunused-function]
static inline __half2 __hlt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2628:23: warning: unused function '__hgt2' [-Wunused-function]
static inline __half2 __hgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2632:23: warning: unused function '__hequ2' [-Wunused-function]
static inline __half2 __hequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2636:23: warning: unused function '__hneu2' [-Wunused-function]
static inline __half2 __hneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2640:23: warning: unused function '__hleu2' [-Wunused-function]
static inline __half2 __hleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2644:23: warning: unused function '__hgeu2' [-Wunused-function]
static inline __half2 __hgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2648:23: warning: unused function '__hltu2' [-Wunused-function]
static inline __half2 __hltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2652:23: warning: unused function '__hgtu2' [-Wunused-function]
static inline __half2 __hgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:3343:23: warning: unused function '__hisnan2' [-Wunused-function]
static inline __half2 __hisnan2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2784:23: warning: unused function '__hadd2' [-Wunused-function]
static inline __half2 __hadd2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2788:23: warning: unused function '__hsub2' [-Wunused-function]
static inline __half2 __hsub2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2792:23: warning: unused function '__hmul2' [-Wunused-function]
static inline __half2 __hmul2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2824:23: warning: unused function 'h2div' [-Wunused-function]
static inline __half2 h2div(__half2 a, __half2 b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2796:23: warning: unused function '__hadd2_sat' [-Wunused-function]
static inline __half2 __hadd2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2800:23: warning: unused function '__hsub2_sat' [-Wunused-function]
static inline __half2 __hsub2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2804:23: warning: unused function '__hmul2_sat' [-Wunused-function]
static inline __half2 __hmul2_sat(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2815:23: warning: unused function '__hfma2' [-Wunused-function]
static inline __half2 __hfma2(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:2819:23: warning: unused function '__hfma2_sat' [-Wunused-function]
static inline __half2 __hfma2_sat(const __half2 a, const __half2 b, const __half2 c)
^
/usr/local/cuda/include/cuda_fp16.h:3359:23: warning: unused function '__hneg2' [-Wunused-function]
static inline __half2 __hneg2(const __half2 a)
^
/usr/local/cuda/include/cuda_fp16.h:2848:22: warning: unused function '__hadd' [-Wunused-function]
static inline __half __hadd(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2852:22: warning: unused function '__hsub' [-Wunused-function]
static inline __half __hsub(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2856:22: warning: unused function '__hmul' [-Wunused-function]
static inline __half __hmul(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2888:22: warning: unused function 'hdiv' [-Wunused-function]
static inline __half hdiv(__half a, __half b) {int volatile ___ = 1;(void)a;(void)b;
^
/usr/local/cuda/include/cuda_fp16.h:2860:22: warning: unused function '__hadd_sat' [-Wunused-function]
static inline __half __hadd_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2864:22: warning: unused function '__hsub_sat' [-Wunused-function]
static inline __half __hsub_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2868:22: warning: unused function '__hmul_sat' [-Wunused-function]
static inline __half __hmul_sat(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2879:22: warning: unused function '__hfma' [-Wunused-function]
static inline __half __hfma(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:2883:22: warning: unused function '__hfma_sat' [-Wunused-function]
static inline __half __hfma_sat(const __half a, const __half b, const __half c)
^
/usr/local/cuda/include/cuda_fp16.h:3364:22: warning: unused function '__hneg' [-Wunused-function]
static inline __half __hneg(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:2666:20: warning: unused function '__hbeq2' [-Wunused-function]
static inline bool __hbeq2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2670:20: warning: unused function '__hbne2' [-Wunused-function]
static inline bool __hbne2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2674:20: warning: unused function '__hble2' [-Wunused-function]
static inline bool __hble2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2678:20: warning: unused function '__hbge2' [-Wunused-function]
static inline bool __hbge2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2682:20: warning: unused function '__hblt2' [-Wunused-function]
static inline bool __hblt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2686:20: warning: unused function '__hbgt2' [-Wunused-function]
static inline bool __hbgt2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2690:20: warning: unused function '__hbequ2' [-Wunused-function]
static inline bool __hbequ2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2694:20: warning: unused function '__hbneu2' [-Wunused-function]
static inline bool __hbneu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2698:20: warning: unused function '__hbleu2' [-Wunused-function]
static inline bool __hbleu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2702:20: warning: unused function '__hbgeu2' [-Wunused-function]
static inline bool __hbgeu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2706:20: warning: unused function '__hbltu2' [-Wunused-function]
static inline bool __hbltu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2710:20: warning: unused function '__hbgtu2' [-Wunused-function]
static inline bool __hbgtu2(const __half2 a, const __half2 b)
^
/usr/local/cuda/include/cuda_fp16.h:2726:20: warning: unused function '__heq' [-Wunused-function]
static inline bool __heq(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2730:20: warning: unused function '__hne' [-Wunused-function]
static inline bool __hne(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2734:20: warning: unused function '__hle' [-Wunused-function]
static inline bool __hle(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2738:20: warning: unused function '__hge' [-Wunused-function]
static inline bool __hge(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2742:20: warning: unused function '__hlt' [-Wunused-function]
static inline bool __hlt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2746:20: warning: unused function '__hgt' [-Wunused-function]
static inline bool __hgt(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2750:20: warning: unused function '__hequ' [-Wunused-function]
static inline bool __hequ(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2754:20: warning: unused function '__hneu' [-Wunused-function]
static inline bool __hneu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2758:20: warning: unused function '__hleu' [-Wunused-function]
static inline bool __hleu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2762:20: warning: unused function '__hgeu' [-Wunused-function]
static inline bool __hgeu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2766:20: warning: unused function '__hltu' [-Wunused-function]
static inline bool __hltu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:2770:20: warning: unused function '__hgtu' [-Wunused-function]
static inline bool __hgtu(const __half a, const __half b)
^
/usr/local/cuda/include/cuda_fp16.h:3350:20: warning: unused function '__hisnan' [-Wunused-function]
static inline bool __hisnan(const __half a)
^
/usr/local/cuda/include/cuda_fp16.h:3338:22: warning: unused function 'hsqrt' [-Wunused-function]
static inline __half hsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3332:22: warning: unused function 'hrsqrt' [-Wunused-function]
static inline __half hrsqrt(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3326:22: warning: unused function 'hrcp' [-Wunused-function]
static inline __half hrcp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3237:22: warning: unused function 'hlog' [-Wunused-function]
static inline __half hlog(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3205:22: warning: unused function 'hlog2' [-Wunused-function]
static inline __half hlog2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3279:22: warning: unused function 'hlog10' [-Wunused-function]
static inline __half hlog10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3087:22: warning: unused function 'hexp' [-Wunused-function]
static inline __half hexp(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3129:22: warning: unused function 'hexp2' [-Wunused-function]
static inline __half hexp2(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3161:22: warning: unused function 'hexp10' [-Wunused-function]
static inline __half hexp10(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3003:22: warning: unused function 'hcos' [-Wunused-function]
static inline __half hcos(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2961:22: warning: unused function 'hsin' [-Wunused-function]
static inline __half hsin(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3335:23: warning: unused function 'h2sqrt' [-Wunused-function]
static inline __half2 h2sqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3329:23: warning: unused function 'h2rsqrt' [-Wunused-function]
static inline __half2 h2rsqrt(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3323:23: warning: unused function 'h2rcp' [-Wunused-function]
static inline __half2 h2rcp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3255:23: warning: unused function 'h2log' [-Wunused-function]
static inline __half2 h2log(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3219:23: warning: unused function 'h2log2' [-Wunused-function]
static inline __half2 h2log2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3297:23: warning: unused function 'h2log10' [-Wunused-function]
static inline __half2 h2log10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3105:23: warning: unused function 'h2exp' [-Wunused-function]
static inline __half2 h2exp(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3143:23: warning: unused function 'h2exp2' [-Wunused-function]
static inline __half2 h2exp2(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3180:23: warning: unused function 'h2exp10' [-Wunused-function]
static inline __half2 h2exp10(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3015:23: warning: unused function 'h2cos' [-Wunused-function]
static inline __half2 h2cos(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2978:23: warning: unused function 'h2sin' [-Wunused-function]
static inline __half2 h2sin(const __half2 a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3064:50: warning: unused function '__float_simpl_sinf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_sinf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:3075:50: warning: unused function '__float_simpl_cosf' [-Wunused-function]
__attribute((always_inline)) static inline float __float_simpl_cosf(float a)
^
/usr/local/cuda/include/cuda_fp16.h:2954:22: warning: unused function '__hsin_internal' [-Wunused-function]
static inline __half __hsin_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:2996:22: warning: unused function '__hcos_internal' [-Wunused-function]
static inline __half __hcos_internal(const __half a) {int volatile ___ = 1;(void)a;
^
/usr/local/cuda/include/cuda_fp16.h:3029:50: warning: unused function '__internal_trig_reduction_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_trig_reduction_kernel(float a, int *quadrant)
^
/usr/local/cuda/include/cuda_fp16.h:3040:50: warning: unused function '__internal_sin_cos_kernel' [-Wunused-function]
__attribute((always_inline)) static inline float __internal_sin_cos_kernel(float x, int i)
^
/usr/local/cuda/include/thrust/system/cuda/detail/cub/device/dispatch/../../util_device.cuh:196:1: warning: function 'SyncStream' is
not needed and will not be emitted [-Wunneeded-internal-declaration]
SyncStream(cudaStream_t stream)
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:110:7: warning: private field 'm_program_break' is not used
[-Wunused-private-field]
void *m_program_break;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:113:8: warning: private field 'm_max_data_segment_size' is not used
[-Wunused-private-field]
size_t m_max_data_segment_size;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:242:15: warning: private field 'm_is_free' is not used
[-Wunused-private-field]
private: bool m_is_free:1;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:243:8: warning: private field 'm_size' is not used
[-Wunused-private-field]
size_t m_size:((8) * sizeof(size_t)) - (1);
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:244:8: warning: private field 'm_prev' is not used
[-Wunused-private-field]
block *m_prev;
^
/usr/local/cuda/include/thrust/system/cuda/detail/bulk/malloc.hpp:445:19: warning: private field 'm_in_use' is not used
[-Wunused-private-field]
private: unsigned m_in_use;
^
208 warnings generated.
/usr/local/cuda/bin/nvcc -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" -M -MT build/src/operator/contrib/multibox_target_gpu.o src/operator/contrib/multibox_target.cu >build/src/operator/contrib/multibox_target_gpu.d
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
/usr/local/cuda/bin/nvcc -c -o build/src/operator/contrib/multibox_target_gpu.o -std=c++11 -Xcompiler -D_FORCE_INLINES -O3 -ccbin g++ -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 -gencode arch=compute_50,code=sm_50 -gencode arch=compute_52,code=sm_52 -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=[sm_61,compute_61] --fatbin-options -compress-all -Xcompiler "-DMSHADOW_FORCE_STREAM -Wall -Wsign-compare -O3 -DNDEBUG=1 -I/Users/sumner/Downloads/mxnet/mshadow/ -I/Users/sumner/Downloads/mxnet/dmlc-core/include -fPIC -I/Users/sumner/Downloads/mxnet/nnvm/include -I/Users/sumner/Downloads/mxnet/dlpack/include -Iinclude -funroll-loops -Wno-unused-variable -Wno-unused-parameter -Wno-unknown-pragmas -Wno-unused-local-typedefs -msse3 -I/usr/local/cuda/include -DMSHADOW_USE_CBLAS=1 -DMSHADOW_USE_MKL=0 -DMSHADOW_RABIT_PS=0 -DMSHADOW_DIST_PS=0 -DMSHADOW_USE_PASCAL=0 -DMXNET_USE_OPENCV=1 -I/usr/local/Cellar/opencv/3.3.0_3/include/opencv -I/usr/local/Cellar/opencv/3.3.0_3/include -DMSHADOW_USE_CUDNN=1 -I/usr/local/opt/openblas/include -I/Users/sumner/Downloads/mxnet/cub -DMXNET_USE_NVRTC=0" src/operator/contrib/multibox_target.cu
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:37:
In file included from src/operator/contrib/../operator_common.h:40:
In file included from src/operator/contrib/../../common/utils.h:28:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/omp.h:13:9: warning: Warning: OpenMP is not available, project will be compiled
into single-thread code. Use OpenMP-enabled compiler to get benefit of multi-threading. [-W#pragma-messages]
#pragma message("Warning: OpenMP is not available, " \
^
2 warnings generated.
In file included from src/operator/contrib/multibox_target.cu:25:
In file included from src/operator/contrib/./multibox_target-inl.h:29:
In file included from include/mxnet/operator.h:32:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/node.h:13:
In file included from /Users/sumner/Downloads/mxnet/nnvm/include/nnvm/./base.h:12:
In file included from /Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/memory.h:12:
/Users/sumner/Downloads/mxnet/dmlc-core/include/dmlc/./thread_local.h:26:9: warning: Warning: CXX11 thread_local is not formally
supported [-W#pragma-messages]
#pragma message("Warning: CXX11 thread_local is not formally supported")
^
In file included from src/operator/contrib/multibox_targ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment