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

Functions for printing Qureg states or reporting their configuration. More...

Functions

void reportQureg (Qureg qureg)
 
void reportQuregParams (Qureg qureg)
 

Detailed Description

Functions for printing Qureg states or reporting their configuration.

Function Documentation

◆ reportQureg()

void reportQureg ( Qureg qureg)
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 369 of file qureg.cpp.

369 {
370 validate_quregFields(qureg, __func__);
371 validate_numReportedNewlinesAboveZero(__func__); // because trailing newline mandatory
372
373 // account all local CPU memory (including buffer), neglecting GPU memory
374 // because it occupies distinct memory spaces, confusing accounting
375 size_t localMem = mem_getLocalQuregMemoryRequired(qureg.numAmpsPerNode);
376 if (qureg.isDistributed)
377 localMem *= 2; // include buffer. @todo will this ever overflow?!?!
378
379 // include struct size (expected negligibly tiny)
380 localMem += sizeof(qureg);
381
382 print_header(qureg, localMem);
383 print_elems(qureg);
384
385 // exclude mandatory newline above
386 print_oneFewerNewlines();
387}

◆ reportQuregParams()

void reportQuregParams ( Qureg qureg)
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 351 of file qureg.cpp.

351 {
352 validate_quregFields(qureg, __func__);
353 validate_numReportedNewlinesAboveZero(__func__); // because trailing newline mandatory
354
355 /// @todo add function to write this output to file (useful for HPC debugging)
356
357 // printer routines will consult env rank to avoid duplicate printing
358 print_label("Qureg");
359 printDeploymentInfo(qureg);
360 printDimensionInfo(qureg);
361 printDistributionInfo(qureg);
362 printMemoryInfo(qureg);
363
364 // exclude mandatory newline above
365 print_oneFewerNewlines();
366}