Skip to content

Instantly share code, notes, and snippets.

View tavianator's full-sized avatar
💭
𝒪(𝑛) things to do, 𝒪(lg 𝑛) time to do them

Tavian Barnes tavianator

💭
𝒪(𝑛) things to do, 𝒪(lg 𝑛) time to do them
View GitHub Profile
@tavianator
tavianator / perf-cmp.py
Last active February 21, 2025 18:51
Compare perf stat between programs
#!/usr/bin/env python3
import argparse
import json
import os
import re
from scipy.stats import ttest_ind_from_stats
from subprocess import DEVNULL, Popen
import sys