srkreddy1238 commented on code in PR #12833:
URL: https://github.com/apache/tvm/pull/12833#discussion_r976031597
##########
docker/bash.sh:
##########
@@ -453,6 +453,12 @@ if [ -f "${REPO_DIR}/.git" ]; then
fi
fi
+if [[ "${DOCKER_IMAGE_NAME}" == *"ci_adreno"* && ! -z "${ADRENO_OPENCL}" ]];
then
+ DOCKER_MOUNT+=( --volume ${ADRENO_OPENCL}:/adreno-opencl)
+ DOCKER_ENV+=( --env ADRENO_OPENCL=/adreno-opencl )
+ DOCKER_ENV+=( --net=host)
Review Comment:
bash.sh is invoked from
[tests/scripts/ci.py](https://github.com/apache/tvm/blob/main/tests/scripts/ci.py)
and now we don't have a way of passing this flag from ci. Let me enhance the
ci script to accommodate container specific flags.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]