mirror of
https://github.com/vale981/ray
synced 2025-03-07 02:51:39 -05:00

- Currently not all code under ray-core/doc_code is covered by CI. - tf_example.py and torch_example.py are not used anywhere. Signed-off-by: Jiajun Yao <jeromeyjj@gmail.com>
18 lines
381 B
Python
18 lines
381 B
Python
import ray
|
|
import numpy as np
|
|
|
|
|
|
@ray.remote
|
|
def f(arr):
|
|
# arr = arr.copy() # Adding a copy will fix the error.
|
|
arr[0] = 1
|
|
|
|
|
|
try:
|
|
ray.get(f.remote(np.zeros(100)))
|
|
except ray.exceptions.RayTaskError as e:
|
|
print(e)
|
|
# ray.exceptions.RayTaskError(ValueError): ray::f()
|
|
# File "test.py", line 6, in f
|
|
# arr[0] = 1
|
|
# ValueError: assignment destination is read-only
|