我正在为 NIST FRVT 编写代码.NIST 希望程序以最多 2 个线程运行(只有 CPU,没有 GPU).我在我的代码中使用 TensorFlow,但它总是产生超过 2 个线程.我尝试了这个解决方案.它减少了线程数,但没有达到 2
I am writing code for NIST FRVT. NIST wants the program to run at max 2 threads(Only CPU, No GPU). I am using TensorFlow in my code but it always spawns much more than 2 threads. I tried this solution. It decreased the number of threads, but not up to 2
我收到此警告
[警告] 我们检测到您的软件在模板创建期间可能正在线程化或使用其他多处理技术.检测到的线程数为 9,应该为 2.根据 API 文档,实现必须运行单线程.在测试环境中,线程没有优势,因为 NIST 会在多个刀片和多个进程之间分配工作负载.我们强烈建议您在提交前解决此问题.
[WARNING] We've detected that your software may be threading or using other multiprocessing techniques during template creation. The number of threads detected was 9 and it should be 2. Per the API document, implementations must run single-threaded. In the test environment, there is no advantage to threading, because NIST will distribute workload across multiple blades and multiple processes. We highly recommend that you fix this issue prior to submission.
NIST 正在通过 top -H -b -n1 | 计算线程数grep validate11 |wc -l
有没有办法强制 TensorFlow 使用最多 2 个线程?
Is there any way to force TensorFlow to use at max 2 threads?
是否有可以在 2 个线程上运行的 TensorFlow 版本?
Is there any TensorFlow version that will run on 2 threads?
(这是因为TensorFlow,我通过从代码中删除TensorFlow部分来检查)
(It is because of TensorFlow, I checked by removing TensorFlow part from the code)
tensorflow 1.8.0 版
tensorflow version 1.8.0
opencv 3.4.1 版
opencv version 3.4.1
g++ 4.8.5 版
g++ version 4.8.5
g++ -std=c++11
g++ -std=c++11
参考以下来源,似乎无法在 1 或 2 个线程上运行 TensorFlow.
With reference to the following sources, it looks like there is no possibility to run TensorFlow on 1 or 2 threads.
我提交了具有超过 6 个线程的 NIST-FRVT 实现,NIST 接受了这一点.6 个线程中只有 1 个在运行,其余线程处于睡眠模式.
I submitted my implementation of NIST-FRVT having more than 6 threads, and NIST accepted that. Only 1 out of 6 threads were running and the rest of the threads were in sleeping mode.
这篇关于如何阻止 TensorFlow 使用多线程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
断言失败(size.width>0 && size.height&gAssertion failed (size.widthgt;0 amp;amp; size.heightgt;0)(断言失败(size.width0 amp;amp; size.height0))
在 C++ 中旋转图像而不使用 OpenCV 函数Rotate an image in C++ without using OpenCV functions(在 C++ 中旋转图像而不使用 OpenCV 函数)
OpenCV:处理每一帧OpenCV: process every frame(OpenCV:处理每一帧)
为什么我不能在 openCV 中打开 avi 视频?Why can#39;t I open avi video in openCV?(为什么我不能在 openCV 中打开 avi 视频?)
OpenCV 无法设置 SVM 参数OpenCV unable to set up SVM Parameters(OpenCV 无法设置 SVM 参数)
使用 cvtColor 转换单一颜色Convert a single color with cvtColor(使用 cvtColor 转换单一颜色)