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