variorum icon indicating copy to clipboard operation
variorum copied to clipboard

Vendor-neutral library for exposing power and performance features across diverse architectures

Results 86 variorum issues
Sort by recently updated
recently updated
newest added

https://github.com/LLNL/blt

type-internal-cleanup
area-build-system

type-feature
area-ci
area-tests

type-internal-cleanup
area-tests
area-internal

Print package power limits internally reads the MSR_RAPL_POWER_UNIT and stores the conversion units for future use. Other printing of power limits, such as printing the DRAM power limits, does not...

type-bug
area-hardware-support

Reproducer: ``` #include int main(){ init_msr(); finalize_msr(); return 0; } ``` After executing `# echo 0 > /sys/devices/system/cpu/7/online` the `7` directory disappears. Running the reproducer looks like: ``` $./examples/variorum-batch-example Warning:...

type-bug
area-hardware-support

The number of batch ops (and their allocated memory) is set by `allocate_batch()` but there is nothing to prevent `load_*_batch()` from writing past the end of that allocated memory.

type-bug
area-hardware-support

`allocate_batch()` works under the assumption that all msr ops in a batch will be allocated at once. Subsequent calls to `allocate_batch()` will overwrite the previous operations and print the cryptic...

type-bug
area-hardware-support

The first call to `perf_storage_temp()` will either allocate `2UL * nsockets` or `2UL * nthreads` memory (depending on whether or not the function parameter `control_domains` is `SOCKET` or `CORE`) and...

type-bug
area-hardware-support

Add a set of tests to do sanity checks on the several flavors of counters. For example, we have several different methods for measuring reference cycles. Make sure they're all...

area-ci