GraphNodeDefinition

data class GraphNodeDefinition(val id: String, val operation: Operation, val inputs: List<GraphValue<*>>, val outputs: List<GraphValue<*>>, val attributes: Map<String, Any?> = emptyMap())(source)

Logical node definition captured by the DSL before lowering to sk.ainet.lang.graph.ComputeGraph.

Constructors

Link copied to clipboard
constructor(id: String, operation: Operation, inputs: List<GraphValue<*>>, outputs: List<GraphValue<*>>, attributes: Map<String, Any?> = emptyMap())

Properties

Link copied to clipboard
Link copied to clipboard
val id: String
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard