Increase bss section size. (#5660)
authorAndrew Reusch <areusch@octoml.ai>
Sat, 23 May 2020 02:41:14 +0000 (19:41 -0700)
committerGitHub <noreply@github.com>
Sat, 23 May 2020 02:41:14 +0000 (19:41 -0700)
* Likely broken in PR 5590.

python/tvm/micro/device/arm/stm32f746xx.py

index 7469585..997093b 100644 (file)
@@ -32,7 +32,7 @@ DEFAULT_SECTION_CONSTRAINTS = {
     "text": (18000, MemConstraint.ABSOLUTE_BYTES),
     "rodata": (100, MemConstraint.ABSOLUTE_BYTES),
     "data": (100, MemConstraint.ABSOLUTE_BYTES),
-    "bss": (600, MemConstraint.ABSOLUTE_BYTES),
+    "bss": (640, MemConstraint.ABSOLUTE_BYTES),
     "args": (4096, MemConstraint.ABSOLUTE_BYTES),
     "heap": (100.0, MemConstraint.WEIGHT),
     "workspace": (64000, MemConstraint.ABSOLUTE_BYTES),