mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 13:02:16 +08:00
8 lines
153 B
Python
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)
|