Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .vscode/cspell.dictionaries/jargon.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ PCLMUL
pclmul
PCLMULQDQ
pclmulqdq
PMULL
pmull
TUNABLES
tunables
VMULL
Expand Down
4 changes: 2 additions & 2 deletions src/uu/cksum/src/cksum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ use uucore::checksum::{
sanitize_sha2_sha3_length_str,
};
use uucore::error::UResult;
use uucore::hardware::CpuFeatures;
use uucore::hardware::{HasHardwareFeatures as _, SimdPolicy};
use uucore::line_ending::LineEnding;
use uucore::{format_usage, translate};

/// Print CPU hardware capability detection information to stderr
/// This matches GNU cksum's --debug behavior
fn print_cpu_debug_info() {
let features = CpuFeatures::detect();
let features = SimdPolicy::detect();

fn print_feature(name: &str, available: bool) {
if available {
Expand Down
Loading
Loading