BNNSGraphGetOutputNames(_:_:_:_:)
Extracts the names of output arguments for the given function argument.
Declaration
func BNNSGraphGetOutputNames(_ graph: bnns_graph_t, _ function: UnsafePointer<CChar>?, _ output_names_count: Int, _ output_names: UnsafeMutablePointer<UnsafePointer<CChar>?>) -> Int32Parameters
- graph:
The compiled graph object.
- function:
The function. Specify as
nilif the graph only contains one function. - output_names_count:
The number of elements in the
output_namesarray. - output_names:
On output, an array of pointers to strings that contain the input names.
Return Value
0 on success, nonzero on failure.
See Also
Querying a graph’s properties
BNNSGraphGetArgumentIntents(_:_:_:_:)BNNSGraphArgumentIntentBNNSGraphGetArgumentCount(_:_:)BNNSGraphGetArgumentNames(_:_:_:_:)BNNSGraphGetFunctionCount(_:)BNNSGraphGetFunctionNames(_:_:_:)BNNSGraphGetInputCount(_:_:)BNNSGraphGetInputNames(_:_:_:_:)BNNSGraphGetOutputCount(_:_:)BNNSGraphGetArgumentPosition(_:_:_:)BNNSGraphGetArgumentInterleaveFactors(_:_:_:_:_:)