经过common的学习之后,然后这个InternalThread类实际上就是boost库的thread的封装,然后对线程进行控制和使用。废话不多啰嗦
看看头文件:
-
class InternalThread {
-
public:
-
-
InternalThread() : thread_() {}
-
virtual ~InternalThread();
-
-
-
-
-
-
-
-
void StartInternalThread();
-
-
-
-
void StopInternalThread();
-
-
bool is_started() const;
-
-
protected:
-
-
-
-
virtual void InternalThreadEntry() {}
-
-
-
-
bool must_stop();
-
-
private:
-
void entry(int device, Caffe::Brew mode, int rand_seed, int solver_count,
-
bool root_solver);
-
-
shared_ptrthread> thread_;
-
};
-
-
}
实现部分:
-
namespace caffe {
-
-
InternalThread::~InternalThread() {
-
StopInternalThread();
-
}
-
-
-
bool InternalThread::is_started() const {
-
return thread_ && thread_->joinable();
-
}
-
-
bool InternalThread::must_stop() {
-
-
return thread_ && thread_->interruption_requested();
-
}
-
-
-
void InternalThread::StartInternalThread() {
-
CHECK(!is_started()) << "Threads should persist and not be restarted.";
-
-
int device = 0;
-
#ifndef CPU_ONLY
-
CUDA_CHECK(cudaGetDevice(&device));
-
#endif
-
Caffe::Brew mode = Caffe::mode();
-
int rand_seed = caffe_rng_rand();
-
int solver_count = Caffe::solver_count();
-
bool root_solver = Caffe::root_solver();
-
-
try {
-
thread_.reset(new boost::thread(&InternalThread::entry, this, device, mode,
-
rand_seed, solver_count, root_solver));
-
} catch (std::exception& e) {
-
LOG(FATAL) << "Thread exception: " << e.what();
-
}
-
}
-
-
-
void InternalThread::entry(int device, Caffe::Brew mode, int rand_seed,
-
int solver_count, bool root_solver) {
-
#ifndef CPU_ONLY
-
CUDA_CHECK(cudaSetDevice(device));
-
#endif
-
Caffe::set_mode(mode);
-
Caffe::set_random_seed(rand_seed);
-
Caffe::set_solver_count(solver_count);
-
Caffe::set_root_solver(root_solver);
-
-
InternalThreadEntry();
-
}
-
-
-
void InternalThread::StopInternalThread() {
-
if (is_started()) {
-
thread_->interrupt();
-
try {
-
thread_->join();
-
} catch (boost::thread_interrupted&) {
-
} catch (std::exception& e) {
-
LOG(FATAL) << "Thread exception: " << e.what();
-
}
-
}
-
}
-
-
}
阅读(1459) | 评论(0) | 转发(0) |