关于 caffe的单例模式
Caffe的common.hpp文件中
1 | class Caffe { |
然后在cpp实现中:
1 | static boost::thread_specific_ptr<Caffe> thread_instance_; //静态变量用于存放static caffe类 |
以后用的时候就这样:直接 Caffe::xxx1
Caffe::set_mode(Caffe::CPU);
Caffe的common.hpp文件中
1 | class Caffe { |
然后在cpp实现中:
1 | static boost::thread_specific_ptr<Caffe> thread_instance_; //静态变量用于存放static caffe类 |
以后用的时候就这样:直接 Caffe::xxx1
Caffe::set_mode(Caffe::CPU);
原文作者:ddddfang
原文链接:https://ddddfang.github.io/2019/01/30/caffe/
发表日期:January 30th 2019, 3:23:17 pm
更新日期:January 30th 2019, 3:25:26 pm
版权声明:本文采用知识共享署名-非商业性使用 4.0 国际许可协议进行许可