-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is "Run Time" correct? #22
Comments
"Run Time" means time it takes to run the main file that is compiled. Does that answer your question? |
Yes, but it doesn't look like that's what it does. More like it's running the compiler without any arguments. |
That's only for languages that doesn't have separate compilation stage in languages interpreter or just-in-time compiled languages such as Julia. |
For C and C3 I can only see that "run" runs the compiler. |
From what I can see "Run Time" is merely invoking the compiler. It doesn't run the
main
created and so consequently the "Run Time" goes down with number of functions. A simple test with C bears this out. I get 28650, 2677 and 269 respectively for 100/10 100/100 100/1000.Is this intentional?
The text was updated successfully, but these errors were encountered: