mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
16 lines
369 B
Python
Executable File
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)
|