Functions for printing Qureg states or reporting their configuration.
More...
Functions for printing Qureg states or reporting their configuration.
◆ 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__);
372
373
374
375 size_t localMem = mem_getLocalQuregMemoryRequired(qureg.numAmpsPerNode);
376 if (qureg.isDistributed)
377 localMem *= 2;
378
379
380 localMem += sizeof(qureg);
381
382 print_header(qureg, localMem);
383 print_elems(qureg);
384
385
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__);
354
355
356
357
358 print_label("Qureg");
359 printDeploymentInfo(qureg);
360 printDimensionInfo(qureg);
361 printDistributionInfo(qureg);
362 printMemoryInfo(qureg);
363
364
365 print_oneFewerNewlines();
366}