- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for DeleteInputValues (0.08 seconds)
-
tensorflow/c/c_test_util.cc
outputs_ptr, output_values_ptr, outputs_.size(), targets_ptr, targets_.size(), nullptr, s); DeleteInputValues(); } void CSession::CloseAndDelete(TF_Status* s) { DeleteInputValues(); ResetOutputValues(); if (session_ != nullptr) { TF_CloseSession(session_, s); EXPECT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Oct 04 05:55:32 GMT 2025 - 17.8K bytes - Click Count (1) -
tensorflow/c/c_test_util.h
void CloseAndDelete(TF_Status* s); TF_Tensor* output_tensor(int i) { return output_values_[i]; } TF_Session* mutable_session() { return session_; } private: void DeleteInputValues(); void ResetOutputValues(); TF_Session* session_; std::vector<TF_Output> inputs_; std::vector<TF_Tensor*> input_values_; std::vector<TF_Output> outputs_;
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Thu Aug 09 01:06:53 GMT 2018 - 6K bytes - Click Count (0)