| 151 | type_string() == "ResourceApplyAdagrad"; |
| 152 | } |
| 153 | bool IsSparseApplyAdagradOps() const { |
| 154 | return type_string() == "SparseApplyAdagrad" || |
| 155 | type_string() == "KvResourceSparseApplyAdagrad" || |
| 156 | type_string() == "KvResourceSparseApplyAdagradWithCounts" || |
| 157 | type_string() == "ResourceSparseApplyAdagrad"; |
| 158 | } |
| 159 | bool IsApplyAdamOps() const { |
| 160 | return type_string() == "ApplyAdam" || |
| 161 | type_string() == "ResourceApplyAdam"; |
no outgoing calls
no test coverage detected