mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-06 21:34:05 -05:00
61 lines
1.7 KiB
Bash
Executable File
61 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
CURR_DIR="$(dirname "$0")"
|
|
ARCH_FEATURE="$("${CURR_DIR}/get_arch_feature.sh")"
|
|
|
|
nproc_bin=nproc
|
|
|
|
# macOS detects CPUs differently
|
|
if [[ $(uname) == "Darwin" ]]; then
|
|
nproc_bin="sysctl -n hw.logicalcpu"
|
|
fi
|
|
|
|
n_threads="$(${nproc_bin})"
|
|
|
|
if uname -a | grep "arm64"; then
|
|
if [[ $(uname) == "Darwin" ]]; then
|
|
# Keys are 4.7 gigs at max, CI M1 macs only has 8 gigs of RAM
|
|
n_threads=1
|
|
fi
|
|
else
|
|
# Keys are 4.7 gigs at max, test machine has 32 gigs of RAM
|
|
n_threads=6
|
|
fi
|
|
|
|
filter_expression=''\
|
|
'('\
|
|
' test(/^shortint::server_key::.*_param_message_1_carry_1$/)'\
|
|
'or test(/^shortint::server_key::.*_param_message_1_carry_2$/)'\
|
|
'or test(/^shortint::server_key::.*_param_message_1_carry_3$/)'\
|
|
'or test(/^shortint::server_key::.*_param_message_1_carry_4$/)'\
|
|
'or test(/^shortint::server_key::.*_param_message_1_carry_5$/)'\
|
|
'or test(/^shortint::server_key::.*_param_message_1_carry_6$/)'\
|
|
'or test(/^shortint::server_key::.*_param_message_2_carry_2$/)'\
|
|
'or test(/^shortint::server_key::.*_param_message_3_carry_3$/)'\
|
|
'or test(/^shortint::server_key::.*_param_message_4_carry_4$/)'\
|
|
')'\
|
|
'and not test(~smart_add_and_mul)' # This test is too slow
|
|
|
|
export RUSTFLAGS="-C target-cpu=native"
|
|
|
|
# Run tests only no examples or benches
|
|
cargo ${1:+"${1}"} nextest run \
|
|
--tests \
|
|
--release \
|
|
--package tfhe \
|
|
--profile ci \
|
|
--features="${ARCH_FEATURE}",shortint,internal-keycache \
|
|
--test-threads "${n_threads}" \
|
|
-E "${filter_expression}"
|
|
|
|
cargo ${1:+"${1}"} test \
|
|
--release \
|
|
--package tfhe \
|
|
--features="${ARCH_FEATURE}",shortint,internal-keycache \
|
|
--doc \
|
|
shortint::
|
|
|
|
echo "Test ran in $SECONDS seconds"
|