Node class helpers
| 147 | |
| 148 | // Node class helpers |
| 149 | bool IsApplyAdagradOps() const { |
| 150 | return type_string() == "ApplyAdagrad" || |
| 151 | type_string() == "ResourceApplyAdagrad"; |
| 152 | } |
| 153 | bool IsSparseApplyAdagradOps() const { |
| 154 | return type_string() == "SparseApplyAdagrad" || |
| 155 | type_string() == "KvResourceSparseApplyAdagrad" || |
no outgoing calls
no test coverage detected