apeforest commented on a change in pull request #14570: add a compiler flag to 
use int64 as tensor size
URL: https://github.com/apache/incubator-mxnet/pull/14570#discussion_r276802185
 
 

 ##########
 File path: ci/docker/runtime_functions.sh
 ##########
 @@ -755,6 +755,35 @@ build_ubuntu_gpu_cmake() {
     ninja -v
 }
 
+build_ubuntu_cpu_large_tensor() {
+    set -ex
+    build_ccache_wrappers
+    export CC="ccache gcc"
+    export CXX="ccache g++"
+    make  \
+        DEV=1                         \
+        ENABLE_TESTCOVERAGE=1         \
+        USE_CPP_PACKAGE=1             \
+        USE_INT64_TENSOR_SIZE=1       \
+        USE_SIGNAL_HANDLER=1          \
+        -j$(nproc)
+}
+
+build_ubuntu_gpu_large_tensor() {
+    set -ex
+    build_ccache_wrappers
+    make  \
 
 Review comment:
   I saw both `make` and `cmake` used in runtime_functions.sh such as 
https://github.com/apache/incubator-mxnet/blob/master/ci/docker/runtime_functions.sh#L358
   
   Sholud we only use `cmake` in the future? 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to