]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - jacinto-ai/caffe-jacinto.git/blob - src/caffe/optimization/solver.hpp
0c680e34d01ed30d228d12dad4575bf6eeba98d4
[jacinto-ai/caffe-jacinto.git] / src / caffe / optimization / solver.hpp
1 #ifndef CAFFE_OPTIMIZATION_SOLVER_HPP_
2 #define CAFFE_OPTIMIZATION_SOLVER_HPP_
4 namespace caffe {
6 class Solver {
7  public:
8   explicit Solver(const SolverParameter& param)
9       : param_(param) {}
10   void Solve(Net* net);
12  protected:
13   SolverParameter param_;
14 };
16 }  // namspace caffe
18 #endif  // CAFFE_OPTIMIZATION_SOLVER_HPP_