-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
invalid size of #6
Comments
Please the pull the codes again, should be fixed now |
Hi Thanks, I have 👍 windows to *nix always painfull. :( |
Which mxnet version you build(I am using 1.31 I think)? Do your unix os support prebuild version of mxnet? |
I have both mac osx and debian. We are compiling from source generally. for the Qt pro file we prefer to use 👍 PKGCONFIG += opencv PKGCONFIG += dlib-1` |
how do you compile your mxnet on mac or debian?
Maybe a bug of mxnet
|
Mac OS X
We had no issue before and all the example of the money working correctly.
May I invite you to linux world :)
Let me have a cup of caffe. And start over…
What is inside your MXNET_PATH ?
Best
… On 23 Feb 2019, at 22:37, Tham ***@***.***> wrote:
how do you compile your mxnet on mac or debian?
Maybe a bug of mxnet
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#6 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AQscn7n7zh3cdSOM7jLRXO2JgRLIyGQaks5vQZiOgaJpZM4bHaw5>.
|
Now I have :
error: invalid application of 'sizeof' to an incomplete type 'ocv::face::dlib_cnn_face_detector'
static_assert(sizeof(_Tp) > 0, “default_delete can not delete incomplete type");
And
error: invalid application of 'sizeof' to an incomplete type 'face_reg_db'
static_assert(sizeof(_Tp) > 0, “default_delete can not delete incomplete type");
|
We had no issue before and all the example of the money working
correctly.
weird, it looks like a cross-referencing problem to me, maybe your mxnet
include a wrong file?
I remember I manually copy some files into the include folder since the
install do not works well
May I invite you to linux world :)
If it was a pay project, I would.
Don't have interest to make the projects support on linux or mac now
What is inside your MXNET_PATH ?
some header files, build libs and dll, hard to list all of them out
error: invalid application of 'sizeof' to an incomplete type
'ocv::face::dlib_cnn_face_detector'
Should fix now, please pull again
MyraBaba <[email protected]> 於 2019年2月24日 週日 上午6:49寫道:
… Now I have :
error: invalid application of 'sizeof' to an incomplete type
'ocv::face::dlib_cnn_face_detector'
static_assert(sizeof(_Tp) > 0, “default_delete can not delete incomplete
type");
And
error: invalid application of 'sizeof' to an incomplete type 'face_reg_db'
static_assert(sizeof(_Tp) > 0, “default_delete can not delete incomplete
type");
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABt-uooHRCZAXWkFc65gh0pbnFz3j1_Eks5vQcWUgaJpZM4bHaw5>
.
|
This is the .pro file: `TEMPLATE = app QT += core DLIB_PATH = ../../3rdLibs/dlib/dlib/build/install INCLUDEPATH += ../.. INCLUDEPATH += $${MXNET_PATH}/cpp-package/include INCLUDEPATH += /opt/intel/compilers_and_libraries_2018.1.126/mac/mkl/include LIBS += $${MXNET_PATH}/lib/ -lmxnet QT_CONFIG -= no-pkg-config SOURCES += HEADERS += |
This line is more than enough
INCLUDEPATH += $${MXNET_PATH}/cpp-package/include
another include paths start with MXNET_PATH can be removed
ex :
INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
Edit : it should be $${MXNET_PATH}/include
MyraBaba <[email protected]> 於 2019年2月24日 週日 下午6:10寫道:
… This is the .pro file:
`TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
QT += core
DLIB_PATH = ../../3rdLibs/dlib/dlib/build/install
MXNET_PATH = /Users/pamela/Downloads/incubator-mxnet
OPENCV_PATH = ../../3rdLibs/opencv/opencv_3_4_2/opencv/build
INCLUDEPATH += ../..
INCLUDEPATH += $${BOOST_PATH}
#INCLUDEPATH += $${DLIB_PATH}/include
INCLUDEPATH += $${OPENCV_PATH}/include
INCLUDEPATH += $${MXNET_PATH}/cpp-package/include
#INCLUDEPATH += $${MXNET_PATH}/cpp-package/include/mxnet-cpp/
INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
INCLUDEPATH += $${MXNET_PATH}/include
INCLUDEPATH +=
/opt/intel/compilers_and_libraries_2018.1.126/mac/mkl/include
LIBS += $${MXNET_PATH}/lib/ -lmxnet
QT_CONFIG -= no-pkg-config
CONFIG += link_pkgconfig
PKGCONFIG += opencv
PKGCONFIG += dlib-1
SOURCES +=
main.cpp
/Users/pamela/Projects/blogCodes2/libs/mxnet/common.cpp
face_reg_db.cpp
face_recognition.cpp \
/Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector.cpp
/Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key.cpp
/Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor.cpp
\
HEADERS +=
/Users/pamela/Projects/blogCodes2/libs/mxnet/common.hpp
face_reg_db.hpp
face_recognition.hpp \
face_reg_info.hpp
/Users/pamela/Projects/blogCodes2/libs/image_format_convert/dlib_to_array.hpp
/Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector.hpp
/Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector_params.hpp
/Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_face_detector_net.hpp
/Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key.hpp
/Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor.hpp
/Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor_params.hpp
/Users/pamela/Projects/blogCodes2/libs/mxnet/generic_predictor.hpp
`
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABt-umTxRBb4Lnut-qRLA4440JMnp-VNks5vQmT9gaJpZM4bHaw5>
.
|
Hi,
When keep only INCLUDEPATH += $${MXNET_PATH}/cpp-package/include for mxnet it gives:
../../../../Downloads/incubator-mxnet/cpp-package/include/mxnet-cpp/base.h:32:10: fatal error: 'nnvm/c_api.h' file not found
#include “nnvm/c_api.h"
İf I include INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
Than Its asking:
../../../../Downloads/incubator-mxnet/cpp-package/include/mxnet-cpp/op_map.h:33:10: fatal error: 'dmlc/logging.h' file not found
#include "dmlc/logging.h"
^~~~~~~~~~~~~~~~
When I include INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
Than we back to our original error:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/memory:2395:27: error: invalid application of 'sizeof' to an incomplete type 'ocv::face::dlib_cnn_face_detector'
static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
^~~~~~~~~~~
… On 24 Feb 2019, at 16:21, Tham ***@***.***> wrote:
This line is more than enough
INCLUDEPATH += $${MXNET_PATH}/cpp-package/include
another include paths start with MXNET_PATH can be removed
ex :
INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
MyraBaba ***@***.***> 於 2019年2月24日 週日 下午6:10寫道:
> This is the .pro file:
>
> `TEMPLATE = app
> CONFIG += console c++11
> CONFIG -= app_bundle
>
> QT += core
>
> DLIB_PATH = ../../3rdLibs/dlib/dlib/build/install
> MXNET_PATH = /Users/pamela/Downloads/incubator-mxnet
> OPENCV_PATH = ../../3rdLibs/opencv/opencv_3_4_2/opencv/build
>
> INCLUDEPATH += ../..
> INCLUDEPATH += $${BOOST_PATH}
> #INCLUDEPATH += $${DLIB_PATH}/include
> INCLUDEPATH += $${OPENCV_PATH}/include
>
> INCLUDEPATH += $${MXNET_PATH}/cpp-package/include
> #INCLUDEPATH += $${MXNET_PATH}/cpp-package/include/mxnet-cpp/
> INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
> INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
> INCLUDEPATH += $${MXNET_PATH}/include
>
> INCLUDEPATH +=
> /opt/intel/compilers_and_libraries_2018.1.126/mac/mkl/include
>
> LIBS += $${MXNET_PATH}/lib/ -lmxnet
>
> QT_CONFIG -= no-pkg-config
> CONFIG += link_pkgconfig
> PKGCONFIG += opencv
> PKGCONFIG += dlib-1
>
> SOURCES +=
> main.cpp
> /Users/pamela/Projects/blogCodes2/libs/mxnet/common.cpp
> face_reg_db.cpp
> face_recognition.cpp \
> /Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector.cpp
>
> /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key.cpp
> /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor.cpp
> \
>
> HEADERS +=
> /Users/pamela/Projects/blogCodes2/libs/mxnet/common.hpp
> face_reg_db.hpp
> face_recognition.hpp \
> face_reg_info.hpp
> /Users/pamela/Projects/blogCodes2/libs/image_format_convert/dlib_to_array.hpp
>
> /Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector.hpp
>
> /Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector_params.hpp
>
> /Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_face_detector_net.hpp
>
> /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key.hpp
> /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor.hpp
>
> /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor_params.hpp
>
> /Users/pamela/Projects/blogCodes2/libs/mxnet/generic_predictor.hpp
> `
>
> —
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <#6 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/ABt-umTxRBb4Lnut-qRLA4440JMnp-VNks5vQmT9gaJpZM4bHaw5>
> .
>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#6 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AQscn8lDC05LcDo1iwsXxwBhuBYNNZRaks5vQpHdgaJpZM4bHaw5>.
|
Not $${MXNET_PATH}/cpp-package/include
but
INCLUDEPATH += $${MXNET_PATH}/include
After you include the files correctly, let us discuss next steps
MyraBaba <[email protected]> 於 2019年2月24日 週日 下午10:12寫道:
… Hi,
When keep only INCLUDEPATH += $${MXNET_PATH}/cpp-package/include for mxnet
it gives:
>
../../../../Downloads/incubator-mxnet/cpp-package/include/mxnet-cpp/base.h:32:10:
fatal error: 'nnvm/c_api.h' file not found
#include “nnvm/c_api.h"
İf I include INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
>
Than Its asking:
../../../../Downloads/incubator-mxnet/cpp-package/include/mxnet-cpp/op_map.h:33:10:
fatal error: 'dmlc/logging.h' file not found
#include "dmlc/logging.h"
^~~~~~~~~~~~~~~~
When I include INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
>
Than we back to our original error:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/memory:2395:27:
error: invalid application of 'sizeof' to an incomplete type
'ocv::face::dlib_cnn_face_detector'
static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete
type");
^~~~~~~~~~~
> On 24 Feb 2019, at 16:21, Tham ***@***.***> wrote:
>
> This line is more than enough
>
> INCLUDEPATH += $${MXNET_PATH}/cpp-package/include
>
> another include paths start with MXNET_PATH can be removed
>
> ex :
> INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
> INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
>
>
> MyraBaba ***@***.***> 於 2019年2月24日 週日 下午6:10寫道:
>
> > This is the .pro file:
> >
> > `TEMPLATE = app
> > CONFIG += console c++11
> > CONFIG -= app_bundle
> >
> > QT += core
> >
> > DLIB_PATH = ../../3rdLibs/dlib/dlib/build/install
> > MXNET_PATH = /Users/pamela/Downloads/incubator-mxnet
> > OPENCV_PATH = ../../3rdLibs/opencv/opencv_3_4_2/opencv/build
> >
> > INCLUDEPATH += ../..
> > INCLUDEPATH += $${BOOST_PATH}
> > #INCLUDEPATH += $${DLIB_PATH}/include
> > INCLUDEPATH += $${OPENCV_PATH}/include
> >
> > INCLUDEPATH += $${MXNET_PATH}/cpp-package/include
> > #INCLUDEPATH += $${MXNET_PATH}/cpp-package/include/mxnet-cpp/
> > INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
> > INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
> > INCLUDEPATH += $${MXNET_PATH}/include
> >
> > INCLUDEPATH +=
> > /opt/intel/compilers_and_libraries_2018.1.126/mac/mkl/include
> >
> > LIBS += $${MXNET_PATH}/lib/ -lmxnet
> >
> > QT_CONFIG -= no-pkg-config
> > CONFIG += link_pkgconfig
> > PKGCONFIG += opencv
> > PKGCONFIG += dlib-1
> >
> > SOURCES +=
> > main.cpp
> > /Users/pamela/Projects/blogCodes2/libs/mxnet/common.cpp
> > face_reg_db.cpp
> > face_recognition.cpp \
> >
/Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector.cpp
> >
> > /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key.cpp
> >
/Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor.cpp
> > \
> >
> > HEADERS +=
> > /Users/pamela/Projects/blogCodes2/libs/mxnet/common.hpp
> > face_reg_db.hpp
> > face_recognition.hpp \
> > face_reg_info.hpp
> >
/Users/pamela/Projects/blogCodes2/libs/image_format_convert/dlib_to_array.hpp
> >
> >
/Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector.hpp
> >
> >
/Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector_params.hpp
> >
> >
/Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_face_detector_net.hpp
> >
> > /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key.hpp
> >
/Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor.hpp
> >
> >
/Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor_params.hpp
> >
> > /Users/pamela/Projects/blogCodes2/libs/mxnet/generic_predictor.hpp
> > `
> >
> > —
> > You are receiving this because you commented.
> > Reply to this email directly, view it on GitHub
> > <
#6 (comment)
>,
> > or mute the thread
> > <
https://github.com/notifications/unsubscribe-auth/ABt-umTxRBb4Lnut-qRLA4440JMnp-VNks5vQmT9gaJpZM4bHaw5
>
> > .
> >
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub <
#6 (comment)>,
or mute the thread <
https://github.com/notifications/unsubscribe-auth/AQscn8lDC05LcDo1iwsXxwBhuBYNNZRaks5vQpHdgaJpZM4bHaw5
>.
>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABt-utJw77KRXV31SUkzGxJqGxGEfxtVks5vQp3NgaJpZM4bHaw5>
.
|
Folders in the include folder
ngap wei Tham <[email protected]> 於 2019年2月24日 週日 下午11:22寫道:
… Not $${MXNET_PATH}/cpp-package/include
but
INCLUDEPATH += $${MXNET_PATH}/include
After you include the files correctly, let us discuss next steps
MyraBaba ***@***.***> 於 2019年2月24日 週日 下午10:12寫道:
> Hi,
>
> When keep only INCLUDEPATH += $${MXNET_PATH}/cpp-package/include for
> mxnet it gives:
> >
>
> ../../../../Downloads/incubator-mxnet/cpp-package/include/mxnet-cpp/base.h:32:10:
> fatal error: 'nnvm/c_api.h' file not found
> #include “nnvm/c_api.h"
>
>
> İf I include INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
> >
> Than Its asking:
>
> ../../../../Downloads/incubator-mxnet/cpp-package/include/mxnet-cpp/op_map.h:33:10:
> fatal error: 'dmlc/logging.h' file not found
> #include "dmlc/logging.h"
> ^~~~~~~~~~~~~~~~
>
> When I include INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
> >
>
> Than we back to our original error:
> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/memory:2395:27:
> error: invalid application of 'sizeof' to an incomplete type
> 'ocv::face::dlib_cnn_face_detector'
> static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete
> type");
> ^~~~~~~~~~~
>
>
>
>
> > On 24 Feb 2019, at 16:21, Tham ***@***.***> wrote:
> >
> > This line is more than enough
> >
> > INCLUDEPATH += $${MXNET_PATH}/cpp-package/include
> >
> > another include paths start with MXNET_PATH can be removed
> >
> > ex :
> > INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
> > INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
> >
> >
> > MyraBaba ***@***.***> 於 2019年2月24日 週日 下午6:10寫道:
> >
> > > This is the .pro file:
> > >
> > > `TEMPLATE = app
> > > CONFIG += console c++11
> > > CONFIG -= app_bundle
> > >
> > > QT += core
> > >
> > > DLIB_PATH = ../../3rdLibs/dlib/dlib/build/install
> > > MXNET_PATH = /Users/pamela/Downloads/incubator-mxnet
> > > OPENCV_PATH = ../../3rdLibs/opencv/opencv_3_4_2/opencv/build
> > >
> > > INCLUDEPATH += ../..
> > > INCLUDEPATH += $${BOOST_PATH}
> > > #INCLUDEPATH += $${DLIB_PATH}/include
> > > INCLUDEPATH += $${OPENCV_PATH}/include
> > >
> > > INCLUDEPATH += $${MXNET_PATH}/cpp-package/include
> > > #INCLUDEPATH += $${MXNET_PATH}/cpp-package/include/mxnet-cpp/
> > > INCLUDEPATH += $${MXNET_PATH}/3rdparty/dmlc-core/include/
> > > INCLUDEPATH += $${MXNET_PATH}/3rdparty/tvm/nnvm/include
> > > INCLUDEPATH += $${MXNET_PATH}/include
> > >
> > > INCLUDEPATH +=
> > > /opt/intel/compilers_and_libraries_2018.1.126/mac/mkl/include
> > >
> > > LIBS += $${MXNET_PATH}/lib/ -lmxnet
> > >
> > > QT_CONFIG -= no-pkg-config
> > > CONFIG += link_pkgconfig
> > > PKGCONFIG += opencv
> > > PKGCONFIG += dlib-1
> > >
> > > SOURCES +=
> > > main.cpp
> > > /Users/pamela/Projects/blogCodes2/libs/mxnet/common.cpp
> > > face_reg_db.cpp
> > > face_recognition.cpp \
> > >
> /Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector.cpp
> > >
> > > /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key.cpp
> > >
> /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor.cpp
> > > \
> > >
> > > HEADERS +=
> > > /Users/pamela/Projects/blogCodes2/libs/mxnet/common.hpp
> > > face_reg_db.hpp
> > > face_recognition.hpp \
> > > face_reg_info.hpp
> > >
> /Users/pamela/Projects/blogCodes2/libs/image_format_convert/dlib_to_array.hpp
> > >
> > >
> /Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector.hpp
> > >
> > >
> /Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_cnn_face_detector_params.hpp
> > >
> > >
> /Users/pamela/Projects/blogCodes2/libs/face/detect/dlib_face_detector_net.hpp
> > >
> > > /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key.hpp
> > >
> /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor.hpp
> > >
> > >
> /Users/pamela/Projects/blogCodes2/libs/face/key/insight_face_key_extractor_params.hpp
> > >
> > > /Users/pamela/Projects/blogCodes2/libs/mxnet/generic_predictor.hpp
> > > `
> > >
> > > —
> > > You are receiving this because you commented.
> > > Reply to this email directly, view it on GitHub
> > > <
> #6 (comment)
> >,
> > > or mute the thread
> > > <
> https://github.com/notifications/unsubscribe-auth/ABt-umTxRBb4Lnut-qRLA4440JMnp-VNks5vQmT9gaJpZM4bHaw5
> >
> > > .
> > >
> > —
> > You are receiving this because you authored the thread.
> > Reply to this email directly, view it on GitHub <
> #6 (comment)>,
> or mute the thread <
> https://github.com/notifications/unsubscribe-auth/AQscn8lDC05LcDo1iwsXxwBhuBYNNZRaks5vQpHdgaJpZM4bHaw5
> >.
> >
>
> —
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <#6 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/ABt-utJw77KRXV31SUkzGxJqGxGEfxtVks5vQp3NgaJpZM4bHaw5>
> .
>
|
I tried many combination. withou nnvm/include and dmlc-core/include/ . it keeps asking header files. when I include same error : size_t i took your time but stuck here. first time i had such crazy situation(blaming microSoft:) |
I check your .pro carefully and find something weirds
1. What is the definition of BOOST_PATH?
2. MXNET_PATH should point to the install folder, I don't know what will be
if you build on linux or mac, but on windows, the mxnet project
will create an install folder and put the header files in that folder.
3. NCLUDEPATH += $${MXNET_PATH}/cpp-package/include is wrong(sorry, asked
you to use this path before), it should be NCLUDEPATH +=
$${MXNET_PATH}/include
4. Unzip the include.7z I sent you, check out how the files organize, your
compiler complain it cannot find the files. If you add too many paths,
cross-referencing problem may
popup
Edit :
My bad, did not remove BOOST_PATH from .pro, updated now
Anyway, thanks for your bug report
MyraBaba <[email protected]> 於 2019年2月24日 週日 下午11:45寫道:
… I tried many combination.
withou nnvm/include and dmlc-core/include/ . it keeps asking header files.
when I include same error : size_t
i took your time but stuck here. first time i had such crazy
situation(blaming microSoft:)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABt-ultZtL7PDZyzdH5kPatgLW1DEXqwks5vQrOfgaJpZM4bHaw5>
.
|
My bad, did not remove BOOST_PATH from .pro, updated now
Anyway, thanks for your bug report
ngap wei Tham <[email protected]> 於 2019年2月25日 週一 上午8:17寫道:
… I check your .pro carefully and find something weirds
1. What is the definition of BOOST_PATH?
2. MXNET_PATH should point to the install folder, I don't know what will
be if you build on linux or mac, but on windows, the mxnet project
will create an install folder and put the header files in that folder.
3. NCLUDEPATH += $${MXNET_PATH}/cpp-package/include is wrong(sorry, asked
you to use this path before), it should be NCLUDEPATH +=
$${MXNET_PATH}/include
4. Unzip the include.7z I sent you, check out how the files organize, your
compiler complain it cannot find the files. If you add too many paths,
cross-referencing problem may
popup
MyraBaba ***@***.***> 於 2019年2月24日 週日 下午11:45寫道:
> I tried many combination.
>
> withou nnvm/include and dmlc-core/include/ . it keeps asking header files.
>
> when I include same error : size_t
>
> i took your time but stuck here. first time i had such crazy
> situation(blaming microSoft:)
>
> —
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <#6 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/ABt-ultZtL7PDZyzdH5kPatgLW1DEXqwks5vQrOfgaJpZM4bHaw5>
> .
>
|
Hi, I didnt see / receive include.7z file. did you forget to attach? |
Please check you email
MyraBaba <[email protected]> 於 2019年2月25日 週一 下午3:16寫道:
… Hi,
I didnt see / receive include.7z file. did you forget to attach?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABt-uo95hQ6M15gtXmZKZshpnWn1m8Y4ks5vQ43JgaJpZM4bHaw5>
.
|
Hi,
When I try to compile in Qt 5.12 I have below errors:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/memory:2395:27: error: invalid application of 'sizeof' to an incomplete type 'dlib_tool::face_detector' static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type"); ^~~~~~~~~~~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/memory:2395:27: error: invalid application of 'sizeof' to an incomplete type 'mxnet_tool::face_key_extractor' static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type"); ^~~~~~~~~~~
The text was updated successfully, but these errors were encountered: