- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TF_ApiDefMap (0.06 sec)
-
tensorflow/c/c_api.h
// // The ApiDef messages are typically used to generate convenience wrapper // functions for TensorFlow operations in various language bindings. typedef struct TF_ApiDefMap TF_ApiDefMap; // Creates a new TF_ApiDefMap instance. // // Params: // op_list_buffer - TF_Buffer instance containing serialized OpList // protocol buffer. (See
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/c_api.cc
return status->status.ok(); } TF_ApiDefMap* TF_NewApiDefMap(TF_Buffer* op_list_buffer, TF_Status* status) { tensorflow::OpList op_list; if (!op_list.ParseFromArray(op_list_buffer->data, op_list_buffer->length)) { status->status = InvalidArgument("Unparseable OpList"); return nullptr; } status->status = absl::OkStatus(); return new TF_ApiDefMap(op_list); }
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue May 13 06:30:43 UTC 2025 - 102.3K bytes - Viewed (0)