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_r277062866
##########
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:
Sure, updated the process to cmake. I think we may need a seperate PR to
update all runtime_functions to cmake otherwise it may cause confusion to
future developers.
----------------------------------------------------------------
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:
[email protected]
With regards,
Apache Git Services