Lines Matching +full:speed +full:- +full:bin
1 #!/usr/bin/env python3
2 # SPDX-License-Identifier: GPL-2.0
9 A tool for comparing tcrypt speed test logs.
19 #!/bin/bash
30 # base speed test
31 lsmod | grep pcrypt && modprobe -r pcrypt
32 dmesg -C
37 # new speed test
38 lsmod | grep pcrypt && modprobe -r pcrypt
39 dmesg -C
43 lsmod | grep pcrypt && modprobe -r pcrypt
49 grep 'average' -A2 -B0 --group-separator="" ${seq_num}_compare.log
58 pattern = r'tcrypt: testing speed of (.*?) (encryption|decryption)'
148 print("-"*hlen)
162 differ = round((new_cnt - base_cnt)*100/base_cnt, 2)
171 (base_sum - new_sum) * 100 / base_sum)
172 print('-'*hlen)
174 print('-'*hlen)
189 exit(-1)