From 3c745606e9494917763313e821e3722d010e2e97 Mon Sep 17 00:00:00 2001 From: KunoiSayami Date: Fri, 22 Jul 2022 16:40:36 +0800 Subject: refactor: Rename files Signed-off-by: KunoiSayami --- expt_0702.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 expt_0702.py (limited to 'expt_0702.py') diff --git a/expt_0702.py b/expt_0702.py new file mode 100755 index 0000000..5ac42b0 --- /dev/null +++ b/expt_0702.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 +import argparse +import os +import subprocess + +import matplotlib.pyplot as plt + + +def function_pdf(proc: str): + p = subprocess.Popen([proc], stdin=subprocess.PIPE, stdout=subprocess.PIPE) + output, _ = p.communicate(b"1024 1024\n32768 1024\n32768 32768\n") + p.stdin.close() + for index in range(0, len(lines := output.splitlines()), 2): + plt.hist(list(map(int, lines[index].split())), bins=100) + plt.title(f"stddev: {lines[index + 1].decode()}") + plt.show() + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('proc') + matches = parser.parse_args() + function_pdf(matches.proc) -- cgit v1.3.1