A create function. This will never actually get called in this test, it's just nice to know that it compiles.
| 28 | // A create function. This will never actually get called in this test, it's |
| 29 | // just nice to know that it compiles. |
| 30 | void* create(TF_OpKernelConstruction* ctx) { |
| 31 | TF_DataType type; |
| 32 | TF_Status* s = TF_NewStatus(); |
| 33 | TF_OpKernelConstruction_GetAttrType(ctx, "foobar", &type, s); |
| 34 | TF_DeleteStatus(s); |
| 35 | return NULL; |
| 36 | } |
| 37 | |
| 38 | // A compute function. This will never actually get called in this test, it's |
| 39 | // just nice to know that it compiles. |
no test coverage detected