mirror of
https://github.com/wassname/ray.git
synced 2026-07-03 17:49:23 +08:00
8 lines
146 B
Python
8 lines
146 B
Python
from typing import List
|
|
import numpy as np
|
|
import ray
|
|
|
|
@ray.remote([List], [np.ndarray])
|
|
def normal(shape):
|
|
return np.random.normal(size=shape)
|