Partial Fully Connected Layers
File:
/src/neuralNetBlocks/fc.hppLines 54–63 /**
* @brief Computes a partial sum of a Fully Connected Layer in int8 precision.
* @ingroup fully_connected
* @param qMatrix The weights of the layer.
* @tparam numCols The width of the weight matrix in the FC Layer.
* @tparam T The type of the input values.
* @tparam NDArray The type of the weight matrix.
*/
template <typename T, std::int32_t numCols, typename NDArray>
void fullyConnectedTileBlockPartial(NDArray& qMatrix) {