| 954 | |
| 955 | template <typename TypeParam> |
| 956 | class AdaDeltaSolverTest : public GradientBasedSolverTest<TypeParam> { |
| 957 | typedef typename TypeParam::Dtype Dtype; |
| 958 | |
| 959 | protected: |
| 960 | virtual void InitSolver(const SolverParameter& param) { |
| 961 | this->solver_.reset(new AdaDeltaSolver<Dtype>(param)); |
| 962 | } |
| 963 | }; |
| 964 | |
| 965 | TYPED_TEST_CASE(AdaDeltaSolverTest, TestDtypesAndDevices); |
| 966 |
nothing calls this directly
no outgoing calls
no test coverage detected