JuliaGraphs / JuliaGraphs/GraphNeuralNetworks.jl
Batching GNNGraphs not compatible with Zygote gradient operation
Nobody has claimed this yet.
- Dominant language
- Julia
- Stars
- 308
- Forks
- 74
- Avg merge
- 3d 6h
- Merged PRs (30d)
- 2
Description
Hello! Many thanks for your great job!
I tried to build a model, where in its forward function I need to batch the input GNNGraphs. In the backprop process an error pops up:
ERROR: Mutating arrays is not supported -- called copyto!(Vector{Symbol}, ...)
This error occurs when you ask Zygote to differentiate operations that change
the elements of arrays in place (e.g. setting values with x .= ...)
Possible fixes:
- avoid mutating operations (preferred)
- or read the documentation and solutions for this error
https://fluxml.ai/Zygote.jl/latest/limitations
I also wrote a dummy example to reproduce this error:
using Zygote
using GNNGraphs
using Flux
using CUDA
g1 = GNNGraph([1,2,3], [2,3,4])
g2 = GNNGraph([1,2,3], [2,4,5])
function test_fn(x)
graphs = [g1, g2]
gs = batch(graphs)
return sum(gs.num_nodes)
end
# This will error
gradient(test_fn, 1.0)
I wonder if there is a way to workaround this? Or is it valid to simply use Zygote.@nograd batch? Any insights are welcome:)
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the reported dummy example using GNNGraphs.batch and Zygote.gradient, then inspect how batching handles the graph collection and the reported copyto! mutation. Compare the behavior with the suggested Zygote.@nograd batch workaround; done means establishing a supported gradient-compatible approach or documenting why batching must be excluded from differentiation.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- julia
- Domain
- machine-learning
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100