Open Xunie opened 3 years ago
I don't think NNPACK works on Windows even if you fix the CMakeLists
Generally, I suggest you take a look at XNNPACK library, which is a successor to NNPACK, and supports Windows well.
I don't think NNPACK works on Windows even if you fix the CMakeLists
If that's the case, there needs to be a case that deals with that and prints out a MESSAGE(FATAL_ERROR ...)
. I'm totally new to NNPACK and was merely trying to use tiny-dnn...
Configuring NNPACK I get a fatal error:
Platform: MSYS2 MINGW64 on a 64-bit Windows machine.
https://github.com/Maratyszcza/NNPACK/blob/57616b9a0ef7b0f8e56bfe7e9738744b52fe1828/CMakeLists.txt#L49-L56
Cause:
This all happens because
CMAKE_SYSTEM_PROCESSOR
is really justCMAKE_HOST_SYSTEM_PROCESSOR
.And PROCESSORARCHITECTURE may be either
x86
,IA64
or **AMD64
_** See here.