(device)
| 11 | let operations = [FastMatMulBlock, AttentionBlock, ResidualBlock, EmbedBlock, DeEmbedBlock, GeluBlock, LayerNormBlock, SoftmaxBlock]; |
| 12 | |
| 13 | function initializeOperations(device) { |
| 14 | for (const operation of operations) operation.initialize(device); |
| 15 | } |
| 16 | |
| 17 | function destroyOperationBuffers() { |
| 18 | for (const operation of operations) operation.destroyBuffers(); |
no test coverage detected