| 91 | }; |
| 92 | |
| 93 | class ISGDCompNode : public App { |
| 94 | public: |
| 95 | ISGDCompNode(const string& name) |
| 96 | : App(name), reporter_(schedulerID(), this) { } |
| 97 | virtual ~ISGDCompNode() { } |
| 98 | |
| 99 | protected: |
| 100 | MonitorSlaver<SGDProgress> reporter_; |
| 101 | }; |
| 102 | |
| 103 | template <typename V> |
| 104 | class MinibatchReader { |
nothing calls this directly
no outgoing calls
no test coverage detected