This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """bf16 matmul roofline sweep on TPU""" | |
| import time | |
| import jax | |
| import jax.numpy as jnp | |
| import numpy as np | |
| DTYPE = jnp.bfloat16 | |
| MIN_SECONDS = 0.5 |