| 1927 | : s_(TF_NewStatus()), graph_(TF_NewGraph()), counter_(0) {} |
| 1928 | |
| 1929 | ~CApiAttributesTest() override { |
| 1930 | TF_DeleteGraph(graph_); |
| 1931 | TF_DeleteStatus(s_); |
| 1932 | } |
| 1933 | |
| 1934 | TF_OperationDescription* init(string type) { |
| 1935 | // Construct op_name to match the name used by REGISTER_OP in the |
nothing calls this directly
no test coverage detected