def exp_range()

in benchmark/bench_vanilla_spmm.py [0:0]


def exp_range(start, end, mul):
    while start <= end:
        yield start
        start *= mul