Skip to content

Commit b7a6061

Browse files
committed
chore(hpu): update hpu integer bench scalar op names, correct double clippy_hpu
1 parent 32e9f1e commit b7a6061

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ clippy_hpu_backend: install_rs_check_toolchain
515515
-p tfhe-hpu-backend -- --no-deps -D warnings
516516

517517
.PHONY: clippy_hpu_mockup # Run clippy lints on tfhe-hpu-mockup
518-
clippy_hpu: install_rs_check_toolchain
518+
clippy_hpu_mockup: install_rs_check_toolchain
519519
RUSTFLAGS="$(RUSTFLAGS)" cargo "$(CARGO_RS_CHECK_TOOLCHAIN)" clippy \
520520
--all-targets \
521521
-p tfhe-hpu-backend -- --no-deps -D warnings
@@ -1110,7 +1110,7 @@ check_md_links: install_mlc
11101110

11111111
.PHONY: check_parameter_export_ok # Checks exported "current" shortint parameter module is correct
11121112
check_parameter_export_ok:
1113-
python3 ./scripts/check_current_param_export.py
1113+
python3.11 ./scripts/check_current_param_export.py
11141114

11151115
.PHONY: check_compile_tests # Build tests in debug without running them
11161116
check_compile_tests: install_rs_build_toolchain

tfhe-benchmark/benches/integer/bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3126,7 +3126,7 @@ mod hpu {
31263126
fn [< default_hpu_ $iop:lower >](c: &mut Criterion) {
31273127
bench_hpu_iop_clean_inputs(
31283128
c,
3129-
concat!("integer::hpu::scalar::", stringify!($iop)),
3129+
concat!("integer::hpu::scalar_", stringify!($iop)),
31303130
stringify!($name),
31313131
&hpu_asm::iop::[< IOP_ $iop:upper >],
31323132
)

0 commit comments

Comments
 (0)