This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 1c5684c  [microTVM] Increase host memory size (#7933)
1c5684c is described below

commit 1c5684cf2924661570a5ceed7c9270f8503ed21e
Author: Mehrdad Hessar <[email protected]>
AuthorDate: Sat May 1 04:42:35 2021 -0700

    [microTVM] Increase host memory size (#7933)
---
 src/runtime/crt/host/main.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/runtime/crt/host/main.cc b/src/runtime/crt/host/main.cc
index 53a0572..e2e4672 100644
--- a/src/runtime/crt/host/main.cc
+++ b/src/runtime/crt/host/main.cc
@@ -110,7 +110,7 @@ tvm_crt_error_t TVMPlatformGenerateRandom(uint8_t* buffer, 
size_t num_bytes) {
 }
 }
 
-uint8_t memory[512 * 1024];
+uint8_t memory[2048 * 1024];
 
 static char** g_argv = NULL;
 

Reply via email to