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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
