LayerCode
data class LayerCode(val layerName: String, val operationType: String, val inputShape: IntArray, val outputShape: IntArray, val codeFragment: String)(source)
Represents generated C code for a single neural network layer.
This data class encapsulates all information needed to generate C code for a specific layer operation, including metadata about the layer's input/output shapes and the actual C code fragment.