gigiblender commented on code in PR #12178:
URL: https://github.com/apache/tvm/pull/12178#discussion_r931546473
##########
ci/jenkins/Test.groovy.j2:
##########
@@ -199,6 +217,9 @@ stage('Test') {
{{ method_name }}()
},
{% endfor %}
+ 'unittest: CPU MINIMAL': {
+ run_unittest_minimal()
+ },
Review Comment:
Not really. The `test_step` macro will expand and generate something as if
the body of run_unittest_minimal was inlined at the call site.
Due to the JVM method size limit, I cannot inline the body of
`run_unittest_minimal` inside the Jenkinsfile.
Therefore, I need a macro that does the same thing as `test_step` but does
not include the declaration that is part of the `parallel`: `unittest: CPU
MINIMAL: {`
--
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]