Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
agnesLeroy committed Nov 21, 2024
1 parent 76f881c commit 588d875
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/gpu_integer_long_run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,3 @@ jobs:
env:
SLACK_COLOR: ${{ job.status }}
SLACK_MESSAGE: "Instance teardown (gpu-long-run-tests) finished with status: ${{ job.status }}. (${{ env.ACTION_RUN_URL }})"


1 change: 0 additions & 1 deletion .github/workflows/integer_long_run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,3 @@ jobs:
env:
SLACK_COLOR: ${{ job.status }}
SLACK_MESSAGE: "Instance teardown (cpu-long-run-tests) finished with status: ${{ job.status }}. (${{ env.ACTION_RUN_URL }})"

1 change: 0 additions & 1 deletion .github/workflows/placeholder_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,3 @@ jobs:
env:
SLACK_COLOR: ${{ job.status }}
SLACK_MESSAGE: "Instance teardown (cpu-long-run-tests) finished with status: ${{ job.status }}. (${{ env.ACTION_RUN_URL }})"

2 changes: 1 addition & 1 deletion tfhe/src/integer/gpu/server_key/radix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ mod scalar_sub;
mod shift;
mod sub;

#[cfg(all(test, feature="__long_run_tests"))]
#[cfg(all(test, feature = "__long_run_tests"))]
mod tests_long_run;
#[cfg(test)]
mod tests_signed;
Expand Down
4 changes: 2 additions & 2 deletions tfhe/src/integer/server_key/radix_parallel/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ mod sum;

mod count_zeros_ones;
pub(crate) mod ilog2;
#[cfg(all(test, feature="__long_run_tests"))]
pub(crate) mod tests_long_run;
mod reverse_bits;
mod slice;
#[cfg(test)]
pub(crate) mod tests_cases_unsigned;
#[cfg(all(test, feature = "__long_run_tests"))]
pub(crate) mod tests_long_run;
#[cfg(test)]
pub(crate) mod tests_signed;
#[cfg(test)]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use crate::integer::keycache::KEY_CACHE;
use crate::integer::server_key::radix_parallel::tests_cases_unsigned::FunctionExecutor;
use crate::integer::server_key::radix_parallel::tests_long_run::{
NB_CTXT_LONG_RUN, NB_TESTS_LONG_RUN,
};
use crate::integer::server_key::radix_parallel::tests_cases_unsigned::FunctionExecutor;
use crate::integer::server_key::radix_parallel::tests_unsigned::CpuFunctionExecutor;
use crate::integer::tests::create_parametrized_test;
use crate::integer::{
Expand Down

0 comments on commit 588d875

Please sign in to comment.