I found the following comment in the source code for the Conv
layer for Flux.jl
:
function (c::Conv)(x::AbstractArray)
# TODO: breaks gpu broadcast :(
It’s a bit concerning, given that I am currently working on a project which involves broadcasting a CNN. I could not find a mention of this issue in the documentation.
Does anyone know what is meant by “breaks” (e.g., is it just slower, are the results incorrect, etc.), and what is meant by “gpu broadcast” (e.g., does it refer to broadcasting a Conv
layer over an Array, or something else).
Thanks in advance!