SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
SerialComputationEngine.h
浏览该文件的文档.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 2013 Soumyajit De
8  */
9 
10 #ifndef SERIAL_COMPUTATION_ENGINE_H_
11 #define SERIAL_COMPUTATION_ENGINE_H_
12 
13 #include <shogun/lib/config.h>
14 
16 
17 namespace shogun
18 {
19 class CIndependentJob;
20 
25 {
26 public:
29 
31  virtual ~CSerialComputationEngine();
32 
39  virtual void submit_job(CIndependentJob* job);
40 
45  virtual void wait_for_all();
46 
48  virtual const char* get_name() const
49  {
50  return "SerialComputationEngine";
51  }
52 };
53 
54 }
55 
56 #endif // SERIAL_COMPUTATION_ENGINE_H_
virtual void submit_job(CIndependentJob *job)
Class that computes multiple independent instances of computation jobs sequentially.
virtual const char * get_name() const
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
Abstract base for general computation jobs to be registered in CIndependentComputationEngine. compute method produces a job result and submits it to the internal JobResultAggregator. Each set of jobs that form a result will share the same job result aggregator.
Abstract base class for solving multiple independent instances of CIndependentJob. It has one method, submit_job, which may add the job to an internal queue and might block if there is yet not space in the queue. After jobs are submitted, it might not yet be ready. wait_for_all waits until all jobs are completed, which must be called to guarantee that all jobs are finished.

SHOGUN 机器学习工具包 - 项目文档