mirror of
https://github.com/vale981/ray
synced 2025-03-09 04:46:38 -04:00
15 lines
318 B
Python
15 lines
318 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
|
|
|
|
|
|
ray.get(f.remote(np.zeros(100)))
|
|
# ray.exceptions.RayTaskError(ValueError): ray::f()
|
|
# File "test.py", line 6, in f
|
|
# arr[0] = 1
|
|
# ValueError: assignment destination is read-only
|