Files
circ/scripts/aby_tests/c_benchmark_aby.py
2022-12-09 20:30:31 +00:00

16 lines
369 B
Python
Executable File

#!/usr/bin/env python
from util import run_tests
from test_suite import *
if __name__ == "__main__":
tests = kmeans_tests_2
# kmeans_tests_2 + \
# gauss_tests + \
# db_tests + \
# mnist_tests + \
# cryptonets_tests + \
# histogram_tests + \
# gcd_tests
run_tests('c', tests)