tinygrad
tinygrad copied to clipboard
tinytqdm write support
Overview
This PR adds support for write
that is commonly used in quite a few examples.
Here's an example of it after running the following:
from tinytqdm.helpers import tqdm
for i in tqdm(range(10)):
tqdm.write(str(i))