- Report CPU frequency and temperature on the HUD
- For gathering system information, use sysctlbyname() if
possible instead of capturing external programs' output
Now comes with CPU load monitoring enabled by default and better
system information report in debug mode. Note that those things
currently require mounted linprocfs(5) to work.
Reported by: portscout
- Add missing dependency for playing music: USE_LINUX+=openal-soft
- In the `do-extract', rather than changing current directory, pass it to
tar(1) as a -C argument and don't needlessly use semi-private _DISTDIR
variable: this makes the command shorter and avoids bogus double slash
in the build log
- Provide more user-friendly wrapper script which anticipates potential
problems that typically affect running this program and advises on how
to solve them
- Spell GNU/Linux correctly in the COMMENT and port description; reformat
the latter with `fmt -w 75' for better looks (less ragged right edge)
error[E0432]: unresolved imports `core::sync::atomic::AtomicI64`, `core::sync::atomic::AtomicU64`
--> /wrkdirs/usr/ports/benchmarks/inferno/work/inferno-0.10.7/cargo-crates/crossbeam-utils-0.8.5/src/lib.rs:79:49
|
79 | pub(crate) use core::sync::atomic::{AtomicI64, AtomicU64};
| ^^^^^^^^^ ^^^^^^^^^ no `AtomicU64` in `sync::atomic`
| |
| no `AtomicI64` in `sync::atomic`
|
help: a similar name exists in the module
|
79 | pub(crate) use core::sync::atomic::{AtomicI8, AtomicU64};
| ~~~~~~~~
help: a similar name exists in the module
|
79 | pub(crate) use core::sync::atomic::{AtomicI64, AtomicU8};
| ~~~~~~~~
error[E0412]: cannot find type `AtomicU64` in module `core::sync::atomic`
--> /wrkdirs/usr/ports/benchmarks/inferno/work/inferno-0.10.7/cargo-crates/crossbeam-utils-0.8.5/src/atomic/consume.rs:78:14
|
78 | impl_atomic!(AtomicU64, u64);
| ^^^^^^^^^ help: a struct with a similar name exists: `AtomicU16`
error[E0412]: cannot find type `AtomicI64` in module `core::sync::atomic`
--> /wrkdirs/usr/ports/benchmarks/inferno/work/inferno-0.10.7/cargo-crates/crossbeam-utils-0.8.5/src/atomic/consume.rs:80:14
|
80 | impl_atomic!(AtomicI64, i64);
| ^^^^^^^^^ help: a struct with a similar name exists: `AtomicI16`
Some errors have detailed explanations: E0412, E0432.
For more information about an error, try `rustc --explain E0412`.
error: could not compile `crossbeam-utils` due to 3 previous errors
Unigine benchmarks are extreme performance and stability test for your
hardware: video card, power supply, cooling system. Check your rig in
stock and overclocked modes with real-life load!
These two benchmarks depict a Gothic chapel and a tropical paradise.
WWW: https://benchmark.unigine.com/
This program allows to compare the performance of different POSIX
shells (e.g. sh, bash, dash, ksh, zsh, ...).
A number of sample scripts are included and can be easily extended to
cover more areas.
vkpeak is a synthetic benchmarking tool to measure peak capabilities
of Vulkan devices. It only measures the peak metrics that can be
achieved using vector operations and does not represent a real-world
use case.
https://github.com/nihui/vkpeak
- Update KDiskMark to version 2.2.1
- Make cache clearing and KDE dependency optional
- Amend port description and add pkg-help file
Reported by: portscout
- Belatedly update to version 1.2.1 and sync port description
- Builds with CMake now and uses modern libraries instead of the
Apache Portable Runtime (devel/apr1)
- While upstream asks for C++11, force C++17 because that's how
Abseil C++ libraries are currently built, otherwise it won't
link due to ABI incompatibilities
- Hook two provided tests to our framework (USES+=cmake:testing)