mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-04-07 03:00:26 -04:00
9
examples/use_ane.py
Executable file
9
examples/use_ane.py
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env python3
|
||||
import numpy as np
|
||||
from tinygrad.tensor import Tensor
|
||||
|
||||
a = Tensor([-2,-1,0,1,2]).ane_()
|
||||
print(a.cpu())
|
||||
b = a.relu()
|
||||
print(b.cpu())
|
||||
|
||||
Reference in New Issue
Block a user