Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TFE_ContextExportRunMetadata (0.11 sec)

  1. tensorflow/c/eager/c_api.cc

    TFE_TensorHandle* TFE_NewTensorHandle(const tensorflow::Tensor& t,
                                          TF_Status* status) {
      return tensorflow::wrap(tensorflow::TensorHandle::CreateLocalHandle(t));
    }
    
    void TFE_ContextExportRunMetadata(TFE_Context* ctx, TF_Buffer* buf,
                                      TF_Status* status) {
      auto* context = tensorflow::unwrap(ctx);
      status->status = context->AsyncWait();
      if (!status->status.ok()) return;
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top