Files
ray/lib/python/halo/arrays/remote/random.py
T
2016-06-05 21:57:37 -07:00

8 lines
153 B
Python

from typing import List
import numpy as np
import halo
@halo.remote([List[int]], [np.ndarray])
def normal(shape):
return np.random.normal(size=shape)