mehrdadh commented on a change in pull request #8156:
URL: https://github.com/apache/tvm/pull/8156#discussion_r645842591
##########
File path: docker/install/ubuntu_install_qemu.sh
##########
@@ -16,10 +16,32 @@
# specific language governing permissions and limitations
# under the License.
+#
+# Install QEMU on Ubuntu.
+#
+# Usage: ubuntu_install_qemu.sh [--target-list target0,target1,...]
+# --target-list is list of target for QEMU comma seperated. e.g.
aarch64-softmmu,arm-softmmu,...
+#
+
set -e
-set -u
set -o pipefail
+# Get number of cores for build
+if [[ "${TVM_CI_NUM_CORES}" ]]; then
Review comment:
shoot, it was working without `-n`, that's why I missed it. But this is
a better syntax.
Thanks for finding this!
--
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]