| 328 | |
| 329 | |
| 330 | size_t mem_getLocalMatrixMemoryRequired(int numQubits, bool isDenseMatrix, int numNodes) { |
| 331 | |
| 332 | // matrix types don't store buffers - they'll use those of Quregs they're applied to |
| 333 | bool hasBuffers = false; |
| 334 | return getLocalMemoryRequired(numQubits, numNodes, isDenseMatrix, hasBuffers); |
| 335 | } |
| 336 | |
| 337 | |
| 338 | size_t mem_getLocalSuperOpMemoryRequired(int numQubits) { |
no test coverage detected