我用VS2015构建了tensorflow,我能够运行一些例子,
作为tf_tutorials_example_trainer
和label_image
然后我尝试运行示例here。
我能够编译并启动example.cc
但是到达行时
Scope root = Scope::NewRootScope();
我收到此错误:
Op type not registered 'NoOp' in binary running on DESKTOP-S5QHRCE.
Make sure the Op and Kernel are registered in the binary running in this process
我错过了什么?
答案 0 :(得分:0)
我找到this。
感谢Joe,他解释了如何使用/WHOLEARCHIVE
选项来解决问题。
在链接过程中避免of memory error
如果使用Optimize for debugging (/DEBUG)
选项,请在命令提示符中执行msbuild /p:Configuration=Release youproject.vcxproj
。