| 336 | |
| 337 | |
| 338 | size_t mem_getLocalSuperOpMemoryRequired(int numQubits) { |
| 339 | |
| 340 | // superoperators have square-bigger superoperators than dense matrices, and are never distributed |
| 341 | int numMatrixQubits = 2 * numQubits; |
| 342 | bool isDense = true; |
| 343 | int numNodes = 1; |
| 344 | return mem_getLocalMatrixMemoryRequired(numMatrixQubits, isDense, numNodes); |
| 345 | } |
| 346 | |
| 347 | |
| 348 |
no test coverage detected