We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9da6f commit 586040aCopy full SHA for 586040a
src/datadeps.jl
@@ -451,6 +451,9 @@ function distribute_tasks!(queue::DataDepsTaskQueue)
451
InvalidScope),
452
all_procs)
453
exec_spaces = unique(vcat(map(proc->collect(memory_spaces(proc)), all_procs)...))
454
+ if !all(space->space isa CPURAMMemorySpace, exec_spaces) && !all(space->root_worker_id(space) == myid(), exec_spaces)
455
+ @warn "Datadeps support for multi-GPU, multi-worker is currently broken\nPlease be prepared for incorrect results or errors" maxlog=1
456
+ end
457
458
# Round-robin assign tasks to processors
459
upper_queue = get_options(:task_queue)
0 commit comments