- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for TF_TensorFromTensor (0.13 sec)
-
tensorflow/c/c_api_experimental.cc
std::unique_ptr<tensorflow::Tensor> tensor; reader->GetTensor(name, &tensor, status); if (!status->status.ok()) return nullptr; return tensorflow::TF_TensorFromTensor(*tensor, &status->status); } void TF_CheckpointReaderGetVariableShape(TF_CheckpointReader* reader, const char* name, int64_t* dims,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 29.5K bytes - Viewed (0) -
tensorflow/c/c_api.cc
if (!src.IsInitialized() || src.NumElements() == 0) { c_outputs[i] = EmptyTensor(static_cast<TF_DataType>(src.dtype()), src.shape()); continue; } c_outputs[i] = TF_TensorFromTensor(src, &status->status); if (!status->status.ok()) return; } } extern "C" { void TF_Run(TF_DeprecatedSession* s, const TF_Buffer* run_options, // Input tensors
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
#include "tensorflow/core/protobuf/error_codes.pb.h" #include "tensorflow/core/protobuf/meta_graph.pb.h" #include "tensorflow/core/util/equal_graph_def.h" namespace tensorflow { TF_Tensor* TF_TensorFromTensor(const Tensor& src, absl::Status* status); absl::Status TF_TensorToTensor(const TF_Tensor* src, Tensor* dst); namespace { static void ExpectHasSubstr(StringPiece s, StringPiece expected) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0)