- Sort Score
- Result 10 results
- Languages All
Results 11 - 15 of 15 for sum_output (0.07 sec)
-
tensorflow/c/c_api_experimental.cc
status->status = c.Run(op_reg_data->shape_inference_fn); if (!status->status.ok()) return; // Set output_shapes. TF_ShapeAndTypeList* output_shapes_result = TF_NewShapeAndTypeList(c.num_outputs()); for (int i = 0; i < c.num_outputs(); ++i) { ShapeHandle shape_handle = c.output(i); TF_ShapeAndType& shape = output_shapes_result->items[i]; shape.num_dims = c.Rank(shape_handle);
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/eager/c_api_unified_experimental.h
TF_OutputList* TF_NewOutputList(); void TF_DeleteOutputList(TF_OutputList* o); // Prepare tracing to the expected number of output for an operation. void TF_OutputListSetNumOutputs(TF_OutputList* o, int num_outputs, TF_Status*); // Return the number of outputs in the list. int TF_OutputListNumOutputs(TF_OutputList* o); // Return the `i`th output in the list. TF_AbstractTensor* TF_OutputListGet(TF_OutputList* o, int i);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sun Oct 24 11:27:00 UTC 2021 - 7K bytes - Viewed (0) -
tensorflow/c/eager/c_api_unified_experimental_test.cc
add_output2 = TF_OutputListGet(add_outputs, 0); TF_DeleteOutputList(add_outputs); } // 3rd Output will be Matrix Multiplication of add_output1 and add_output2 TF_AbstractTensor* mm_output; { // Build an abstract operation, inputs and output. auto* mm_op = TF_NewAbstractOp(graph_ctx); TF_AbstractOpSetOpType(mm_op, "MatMul", s); ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 39.1K bytes - Viewed (0) -
tensorflow/c/c_api.h
// TF_ImportGraphDefOptionsAddReturnOutput(). The number of fetched outputs is // returned in `num_outputs`. The array of return outputs is returned in // `outputs`. `*outputs` is owned by and has the lifetime of `results`. TF_CAPI_EXPORT extern void TF_ImportGraphDefResultsReturnOutputs( TF_ImportGraphDefResults* results, int* num_outputs, TF_Output** outputs); // Fetches the return operations requested via
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
tensorflow/c/eager/c_api_experimental.h
// device if any of their inputs are on that custom device, but custom devices // are free to set a bad status in order to require explicit placement. void (*execute)(const TFE_Op* op, int* num_outputs, TFE_TensorHandle** outputs, TF_Status* s, void* device_info); // Method to delete a device. void (*delete_device)(void* device_info);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Feb 21 22:37:46 UTC 2024 - 39.5K bytes - Viewed (0)