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 2022/09/15 13:15:28 UTC

[GitHub] [tvm] Yangzijun510 opened a new pull request, #12792: [Relay] optimize dumpir time

Yangzijun510 opened a new pull request, #12792:
URL: https://github.com/apache/tvm/pull/12792

   Add string before doc, slow. Add string after doc, fast
   
   Thanks for contributing to TVM!   Please refer to guideline https://tvm.apache.org/docs/contribute/ for useful information and tips. After the pull request is submitted, please request code reviews from [Reviewers](https://github.com/apache/incubator-tvm/blob/master/CONTRIBUTORS.md#reviewers) by @ them in the pull request thread.
   


-- 
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] vinx13 merged pull request #12792: [Relay] optimize dumpir time

Posted by GitBox <gi...@apache.org>.
vinx13 merged PR #12792:
URL: https://github.com/apache/tvm/pull/12792


-- 
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] Yangzijun510 commented on pull request #12792: [Relay] optimize dumpir time

Posted by GitBox <gi...@apache.org>.
Yangzijun510 commented on PR #12792:
URL: https://github.com/apache/tvm/pull/12792#issuecomment-1248089108

   I tested that   `  time_t now = time(0);
     char* dt = ctime(&now);
     std::cout << "time 1 = " << dt << std::endl;
     Doc doc;
     for (int i = 0; i <= 100000; i++) {
       Doc a;
       a << "a";
       doc = a << doc;
     }
     now = time(0);
     dt = ctime(&now);
     std::cout << "time 2 = " << dt << std::endl;
   
     now = time(0);
     dt = ctime(&now);`
   


-- 
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] Destinywck commented on pull request #12792: [Relay] optimize dumpir time

Posted by GitBox <gi...@apache.org>.
Destinywck commented on PR #12792:
URL: https://github.com/apache/tvm/pull/12792#issuecomment-1248841224

   @Hzfengsy cc


-- 
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