Replies: 1 comment 2 replies
-
Ok, so I tried bisecting my network a bit, and managed to reproduce the problem with a minimal network of 3 layers: convolution, upsample and convolution. here are my implementations of those 2 layers: Conv2D:
Upsample:
And I am propagating through the network the following way:
What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am trying to build a neural network using Halide. I have a network with ~75 layers (mostly convolution, bias add, maxpool and relu layers)
But when I run the network I get the error saying
Total size for allocation Conv2D$8 is constant but exceeds 2^31 - 1.
I also tried JIT compiling for target with
LargeBuffers
feature like this, but I get the same error.Should it be possible to achieve what I am trying, and if so, how? If not, what is the exact problem I am facing?
Let me know if you are missing any info.
Thanks! :)
Beta Was this translation helpful? Give feedback.
All reactions