| 721 | |
| 722 | template <typename TypeParam> |
| 723 | class AdaGradSolverTest : public GradientBasedSolverTest<TypeParam> { |
| 724 | typedef typename TypeParam::Dtype Dtype; |
| 725 | |
| 726 | protected: |
| 727 | virtual void InitSolver(const SolverParameter& param) { |
| 728 | this->solver_.reset(new AdaGradSolver<Dtype>(param)); |
| 729 | } |
| 730 | }; |
| 731 | |
| 732 | TYPED_TEST_CASE(AdaGradSolverTest, TestDtypesAndDevices); |
| 733 |
nothing calls this directly
no outgoing calls
no test coverage detected