You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2021/10/13 08:42:27 UTC

[GitHub] [tvm] Mousius opened a new pull request #9270: [CI] Pre-build Reference System Dependencies

Mousius opened a new pull request #9270:
URL: https://github.com/apache/tvm/pull/9270


   Building these dependencies from scratch in each test was taking much longer than really necessary.
   
   Before:
   ```
   $ time python3 -m pytest tests/python/contrib/test_ethosu/test_codegen.py::test_tflite_depthwise_conv2d[strides0-dilation0-SAME-kernel_shape0-relu-ifm_shape0-ethos-u55-256]
   real    0m19.982s
   user    0m13.255s
   sys     0m3.403s
   ```
   
   After:
   ```
   $ time python3 -m pytest tests/python/contrib/test_ethosu/test_codegen.py::test_tflite_depthwise_conv2d[strides0-dilation0-SAME-kernel_shape0-relu-ifm_shape0-ethos-u55-256]
   real    0m10.963s
   user    0m5.516s
   sys     0m2.232s
   ```
   


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] Mousius commented on pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
Mousius commented on pull request #9270:
URL: https://github.com/apache/tvm/pull/9270#issuecomment-942574363


   Docker output with a cut down ci_cpu:
   ```
   REPOSITORY                                                        TAG                               IMAGE ID       CREATED          SIZE
   tvm.ci_cpu                                                        before-dep                        248183f4c170   11 seconds ago   2.16GB
   tvm.ci_cpu                                                        after-deps                        295ad1fb553e   6 minutes ago    2.16GB
   ```
   Can't figure out how to make this more granular, but seems ok :smile_cat: 


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] areusch merged pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
areusch merged pull request #9270:
URL: https://github.com/apache/tvm/pull/9270


   


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] Mousius commented on pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
Mousius commented on pull request #9270:
URL: https://github.com/apache/tvm/pull/9270#issuecomment-942544509


   @areusch the Driver is about 384K and CMSIS NN is about 1.6MB


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] areusch commented on pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
areusch commented on pull request #9270:
URL: https://github.com/apache/tvm/pull/9270#issuecomment-942931703


   thanks @mousius, the PR is now merged!


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] Mousius commented on pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
Mousius commented on pull request #9270:
URL: https://github.com/apache/tvm/pull/9270#issuecomment-942544509






-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] areusch commented on pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
areusch commented on pull request #9270:
URL: https://github.com/apache/tvm/pull/9270#issuecomment-942520731


   @Mousius do you have an idea how much larger this makes ci-cpu? just wary of including build artifacts in our docker base images


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] Mousius edited a comment on pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
Mousius edited a comment on pull request #9270:
URL: https://github.com/apache/tvm/pull/9270#issuecomment-942544509


   @areusch the Driver is about 364K and CMSIS NN is about 1.6MB


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] areusch commented on pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
areusch commented on pull request #9270:
URL: https://github.com/apache/tvm/pull/9270#issuecomment-942520731


   @Mousius do you have an idea how much larger this makes ci-cpu? just wary of including build artifacts in our docker base images


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tvm] Mousius edited a comment on pull request #9270: [CI] Pre-build Reference System Dependencies

Posted by GitBox <gi...@apache.org>.
Mousius edited a comment on pull request #9270:
URL: https://github.com/apache/tvm/pull/9270#issuecomment-942544509


   @areusch the Driver is about 364K and CMSIS NN is about 1.6MB


-- 
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: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org