提交 bf269d67 编写于 作者: T tensor-tang

fix place_test on MKLDNNPlace

上级 a92f057e
...@@ -45,7 +45,7 @@ bool is_gpu_place(const Place &p) { ...@@ -45,7 +45,7 @@ bool is_gpu_place(const Place &p) {
return boost::apply_visitor(IsGPUPlace(), p); return boost::apply_visitor(IsGPUPlace(), p);
} }
bool is_cpu_place(const Place &p) { bool is_cpu_place(const Place &p) {
return !boost::apply_visitor(IsGPUPlace(), p); return !is_gpu_place(p) && !is_mkldnn_place(p);
} }
bool is_mkldnn_place(const Place &p) { bool is_mkldnn_place(const Place &p) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册