Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1. Problem occurred during compilation with the command line below:
  2. /usr/bin/g++ -shared -g -O3 -fno-math-errno -Wno-unused-label -Wno-unused-variable -Wno-write-strings -march=ivybridge -mmmx -mno-3dnow -msse -msse2 -msse3 -mssse3 -mno-sse4a -mcx16 -msahf -mno-movbe -maes -mno-sha -mpclmul -mpopcnt -mno-abm -mno-lwp -mno-fma -mno-fma4 -mno-xop -mno-bmi -mno-sgx -mno-bmi2 -mno-tbm -mavx -mno-avx2 -msse4.2 -msse4.1 -mno-lzcnt -mno-rtm -mno-hle -mrdrnd -mf16c -mfsgsbase -mno-rdseed -mno-prfchw -mno-adx -mfxsr -mxsave -mxsaveopt -mno-avx512f -mno-avx512er -mno-avx512cd -mno-avx512pf -mno-prefetchwt1 -mno-clflushopt -mno-xsavec -mno-xsaves -mno-avx512dq -mno-avx512bw -mno-avx512vl -mno-avx512ifma -mno-avx512vbmi -mno-avx5124fmaps -mno-avx5124vnniw -mno-clwb -mno-mwaitx -mno-clzero -mno-pku -mno-rdpid --param l1-cache-size=32 --param l1-cache-line-size=64 --param l2-cache-size=6144 -mtune=ivybridge -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -m64 -fPIC -I/usr/local/lib/python3.5/dist-packages/numpy/core/include -I/usr/include/python3.5m -I/home/utikeev/.local/lib/python3.5/site-packages/theano/gof/c_code -L/usr/lib -fvisibility=hidden -o /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mf67e93cb5ca0ae533816bf7699f0b60a407e7e467413a37c572f344304b1498f.so /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp -lpython3.5m/home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp: In member function ‘int {anonymous}::__struct_compiled_op_mf67e93cb5ca0ae533816bf7699f0b60a407e7e467413a37c572f344304b1498f::run()’:
  3. /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp:1584:64: error: no matching function for call to ‘batch_gemm<float>(<unresolved overloaded function type>, int&, PyArrayObject*&, PyArrayObject*&, PyArrayObject*&)’
  4. if (batch_gemm<float>(sgemm_, type_size, xs, ys, zs)) {
  5. ^
  6. /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp:973:14: note: candidate: template<class dtype, class function> bool batch_gemm(function, int, PyArrayObject*, PyArrayObject*, PyArrayObject*)
  7. bool batch_gemm(function gemm, int type_size,
  8. ^~~~~~~~~~
  9. /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp:973:14: note: template argument deduction/substitution failed:
  10. /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp:1584:64: note: couldn't deduce template parameter ‘function’
  11. if (batch_gemm<float>(sgemm_, type_size, xs, ys, zs)) {
  12. ^
  13. /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp:1596:65: error: no matching function for call to ‘batch_gemm<double>(<unresolved overloaded function type>, int&, PyArrayObject*&, PyArrayObject*&, PyArrayObject*&)’
  14. if (batch_gemm<double>(dgemm_, type_size, xs, ys, zs)) {
  15. ^
  16. /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp:973:14: note: candidate: template<class dtype, class function> bool batch_gemm(function, int, PyArrayObject*, PyArrayObject*, PyArrayObject*)
  17. bool batch_gemm(function gemm, int type_size,
  18. ^~~~~~~~~~
  19. /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp:973:14: note: template argument deduction/substitution failed:
  20. /home/utikeev/.theano/compiledir_Linux-4.13--generic-x86_64-with-elementary-0.4.1-loki-x86_64-3.5.2-64/tmpnce91t9b/mod.cpp:1596:65: note: couldn't deduce template parameter ‘function’
  21. if (batch_gemm<double>(dgemm_, type_size, xs, ys, zs)) {
  22. ^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement