How to Install and Uninstall perl-Dumbbench Package on openSuSE Tumbleweed

Last updated: July 02,2024

1. Install "perl-Dumbbench" package

This is a short guide on how to install perl-Dumbbench on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Dumbbench

2. Uninstall "perl-Dumbbench" package

Here is a brief guide to show you how to uninstall perl-Dumbbench on openSuSE Tumbleweed:

$ sudo zypper remove perl-Dumbbench

3. Information about the perl-Dumbbench package on openSuSE Tumbleweed

Information for package perl-Dumbbench:
---------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Dumbbench
Version : 0.503-1.9
Arch : noarch
Vendor : openSUSE
Installed Size : 86.6 KiB
Installed : No
Status : not installed
Source package : perl-Dumbbench-0.503-1.9.src
Upstream URL : https://metacpan.org/release/Dumbbench
Summary : More reliable benchmarking with the least amount of thinking
Description :
This module attempts to implement reasonably robust benchmarking with
little extra effort and expertise required from the user. That is to say,
benchmarking using this module is likely an improvement over
time some-command --to --benchmark
or
use Benchmark qw/timethis/;
timethis(1000, 'system("some-command", ...)');
The module currently works similar to the former command line, except (in
layman terms) it will run the command many times, estimate the uncertainty
of the result and keep iterating until a certain user-defined precision has
been reached. Then, it calculates the resulting uncertainty and goes
through some pain to discard bad runs and subtract overhead from the
timings. The reported timing includes an uncertainty, so that multiple
benchmarks can more easily be compared.
Please note that 'Dumbbench' works entirely with wallclock time as reported
by 'Time::HiRes'' 'time()' function.