-
Notifications
You must be signed in to change notification settings - Fork 0
/
measure_complexity.sh
46 lines (33 loc) · 1.13 KB
/
measure_complexity.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env bash
# cd ..
# Host code
echo "Host application"
scc sw/vfpio_host_app_template/main.cpp
scc sw/coyote_host_app_template/main.cpp
###############################################################
# FPGA code: cyt_examples is for coyote style applications, vfpio otherwise
echo "AES"
scc hw/hdl/operators/examples/cyt_examples/service_aes
scc hw/hdl/operators/examples/service_aes
echo "SHA256"
scc hw/hdl/operators/examples/cyt_examples/sha256
scc hw/hdl/operators/examples/sha256
echo "MD5"
scc hw/hdl/operators/examples/cyt_examples/md5
scc hw/hdl/operators/examples/md5
echo "nw"
scc hw/hdl/operators/examples/cyt_examples/nw
scc hw/hdl/operators/examples/nw
echo "matmul"
scc hw/hdl/operators/examples/cyt_examples/matmul
scc hw/hdl/operators/examples/matmul
echo "sha3"
scc hw/hdl/operators/examples/cyt_examples/keccak
scc hw/hdl/operators/examples/keccak
echo "rng"
scc hw/hdl/operators/examples/cyt_examples/rng
scc hw/hdl/operators/examples/rng
echo "gzip"
scc hw/hdl/operators/examples/cyt_examples/gzip
scc hw/hdl/operators/examples/gzip
###############################################################