The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches

Functions for printing channels. More...

Functions

void reportKrausMap (KrausMap map)
 
void reportSuperOp (SuperOp op)
 

Detailed Description

Functions for printing channels.

Function Documentation

◆ reportKrausMap()

void reportKrausMap ( KrausMap map)
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 465 of file channels.cpp.

465 {
466 validate_krausMapFields(map, __func__);
467 validate_numReportedNewlinesAboveZero(__func__); // because trailing newline mandatory
468
469 // pedantically demand that the map's SuperOP is GPU-synced,
470 // even though only the CPU Kraus operators are printed
471 validate_krausMapIsSynced(map, __func__);
472
473 // determine memory costs (gauranteed not to overflow)
474 bool isDense = true;
475 int numNodes = 1;
476 size_t krausMem = mem_getLocalMatrixMemoryRequired(map.numQubits, isDense, numNodes) * map.numMatrices;
477 size_t superMem = mem_getLocalSuperOpMemoryRequired(map.superop.numQubits);
478 size_t strucMem = sizeof(map);
479
480 // gauranteed not to overflow
481 size_t totalMem = krausMem + superMem + strucMem;
482 print_header(map, totalMem);
483 print_elems(map);
484
485 // exclude mandatory newline above
486 print_oneFewerNewlines();
487}

◆ reportSuperOp()

void reportSuperOp ( SuperOp op)
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 445 of file channels.cpp.

445 {
446 validate_superOpFields(op, __func__);
447 validate_numReportedNewlinesAboveZero(__func__); // because trailing newline mandatory
448
449 // demand that SuperOp is GPU-synced, since the
450 // to-be-printed GPU elems will overwrite CPU
451 validate_superOpIsSynced(op, __func__);
452
453 // determine memory costs; heap memory and struct fields
454 size_t elemMem = mem_getLocalSuperOpMemoryRequired(op.numQubits);
455 size_t structMem = sizeof(op);
456
457 print_header(op, elemMem + structMem);
458 print_elems(op);
459
460 // exclude mandatory newline above
461 print_oneFewerNewlines();
462}