Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for push_back (0.18 sec)

  1. tensorflow/c/c_api_experimental.cc

        TF_Function* func = TF_FunctionImportFunctionDef(
            binary_proto_buf.data(), binary_proto_buf.size(), status);
        if (!status->status.ok()) return {};
        ret.push_back(UniqueFuncPtr(func, TF_DeleteFunction));
      }
      return ret;
    }
    
    TF_Tensor* TF_DequeueNamedTensor(TF_Session* session, int tensor_id,
                                     TF_Status* status) {
      assert(session);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.cc

              absl::Span<tensorflow::ImmediateExecutionTensorHandle*>(
                  tensorflow::unwrap(handles), *num_handles),
              &result);
          return tensorflow::wrap(result);
        }
        tensor_handles.push_back(
            tensorflow::TensorHandleFromInterface(unwrapped_handle));
      }
      tensorflow::EagerContext* context =
          tensorflow::ContextFromInterface(tensorflow::unwrap(ctx));
      tensorflow::TensorHandle* handle = nullptr;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
Back to top