Skip to content

Instantly share code, notes, and snippets.

View PhillCli's full-sized avatar

Filip Brzek PhillCli

View GitHub Profile
@PhillCli
PhillCli / bench_blas_lapack.py
Created December 30, 2022 17:07 — forked from ogrisel/bench_blas_lapack.py
Running some benchmark of BLAS level 3 and LAPACK on Apple M1
import numpy as np
try:
import tensorflow as tf
except ImportError:
tf = None
from time import perf_counter
def timeit(func, *args, **kwargs):
durations = []