Tagged Questions
The execution-time tag has no wiki summary.
32
votes
8answers
2k views
Why is this Java code 6x faster than the identical C# code?
UPDATE 2:
Changing the target from x86 to anycpu has lowered the average execution time to 84ms per run, down from 282ms. Maybe I should split this off into a second thread?
UPDATE:
Thanks to Femaref ...
15
votes
6answers
2k views
Measure execution time in C#
I want to measure the execution of a piece of code and I'm wondering what the best method to do this is?
Option 1:
DateTime StartTime = DateTime.Now;
//Code
TimeSpan ts = ...
13
votes
4answers
7k views
What is the best way to measure execution time of a function?
Obviously I can do and DateTime.Now.After - DateTime.Now.Before but there must be something more sophisticated.
Any tips appreciated.
12
votes
1answer
364 views
Difference between Rscript and littler
...besides the fact that Rscript is invoked with #!/usr/bin/env Rscript and littler with #!/usr/local/bin/r (on my system) in first line of script file. I've found certain differences in execution ...
11
votes
1answer
379 views
“real” execution time limit
Using set_time_limit() or max_execution_time, does not "really" limits (except on Windows) the execution time, because as stated in PHP manual:
Note:
The set_time_limit() function and the ...
10
votes
11answers
614 views
What is considered a long execution time?
I am trying to figure out just how "efficient" my server-side code is.
Using start and end microtime(true) values, I am able to calculate the time it took my script to run.
I am getting times from ...
6
votes
2answers
203 views
Mathematica execution-time bug: symbol names
There is a strange bug that has been in Mathematica for years, at least since version 5.1, and persisting through version 7.
Module[{f, L}, L = f[];
Do[L = f[L, i], {i, 10^4}]] // Timing
...
6
votes
3answers
460 views
How to measure x86 and x86-64 assembly commands execution time in processor cycles?
I want to write a bunch of optimizations for gcc using genetic algorithms.
I need to measure execution time of an assembly functions for some stats and fit functions.
The usual time measurement can't ...
5
votes
4answers
185 views
How to test 500 Trillion combinations in less than 6 hours of execution time [closed]
I have a PHP script now looping through combinations of a set of arrays. I can test 6.1 Billion of the 500 Trillion total combinations in 1 hour with a simple PHP script. Is it possible to write a ...
5
votes
6answers
139 views
Can I pass a Method as parameter of another method in java?
I am trying to measure the execution time for several methods. so I was thinking to make a method instead of duplicate same code many times.
Here is my code:
private void MeasureExecutionTime(Method ...
5
votes
1answer
339 views
Java problem time limit exceeded issue
Im coding a problem(reference --http://www.codechef.com/FEB11/problems/THREECLR/)
The below is my code
import java.io.*;
import java.util.*;
public class Main {
static String ReadLn (int maxLg) ...
5
votes
6answers
5k views
C programming, how can I get execution time of a program in milliseconds?
Currently I'm getting execution wall time of my program in seconds by calliing:
time_t startTime = time(NULL);
//section of code
time_t endTime = time(NULL);
double duration = ...
4
votes
2answers
554 views
drupal maximum execution time of cron
Whats the maximum execution time of cron. is it possible to modify it if so any side effects.
4
votes
4answers
306 views
Java anonymous class efficiency implications
Is there any difference in efficiency (e.g. execution time, code size, etc.) between these two ways of doing things?
Below are contrived examples that create objects and do nothing, but my actual ...
4
votes
4answers
582 views
microsecond profiler for C code
Does any body know of C code profiler like gprof which gives function call times in microseconds instead of milliseconds?
4
votes
5answers
1k views
PHP: Coding long-running scripts when servers impose an execution time limit
FastCGI servers, for example, impose an execution time limit on PHP scripts which cannot be altered using set_time_limit() in PHP. IIS does this too I believe.
I wrote an import script for a PHP ...
4
votes
5answers
665 views
C# 2.0 Execution Time Timer
I would like to be able to calculate the amount of time a number of functions take to execute. I was thinking about using some type of stopwatch class. I can call start/stop before and after each ...
3
votes
3answers
52 views
Best way to execute AppleScript from Java
I have a couple of AppleScripts that i want to run from Java. I have several options including:
Running the AppleScript as a string using the AppleScript ScriptEngine (using ((new ...
3
votes
3answers
170 views
How can I calculate the execution time of some method theoretically?
Suppose I have, "Heap Sort" method which its complexity time is O(nlogn). When I measure the execution time of this method upon 1000000 inputs I got 0.375770669 seconds. How can I calculate the ...
3
votes
5answers
563 views
Compilation and execution time of C++ vs C source code
I am not sure if this is a valid comparison or a valid statement but over the years I have heard folks claiming that the programs written in C++ generally take a longer time for compilation than the ...
3
votes
3answers
450 views
Max execution time issue
I want to increase the maximum execution & input time for my PHP scripts. I added the following two lines to my .htaccess file located at the document root:
php_value max_execution_time 8000
...
3
votes
1answer
400 views
Query runs quickly in Oracle SQL Developer, but slowly in SSRS 2008 R2
It's that simple: a query that runs in just a few seconds in SQL Developer connecting to Oracle 11g takes 15-25 minutes in SSRS 2008 R2. I haven't tried other versions of SSRS. So far I'm doing all ...
3
votes
6answers
318 views
How to exit a process run with C++ if it takes more than 5 seconds?
I'm implementing a checking system in C++. It runs executables with different tests. If the solution is not correct, it can take forever for it to finish with certain hard tests. That's why I want to ...
3
votes
4answers
215 views
Most efficient way of getting the next unused id
(related to http://stackoverflow.com/questions/3439571/finding-the-lowest-unused-unique-id-in-a-list and http://stackoverflow.com/questions/2116056/getting-unused-unique-values-on-a-sql-table)
...
3
votes
5answers
389 views
How much mail() function can be used in 30sec execution time?
I have to made a page which will send Email to Newsletter subscribers. There is more then 14000 subscriber. I want to use php mail() function to send Email to them. But I'm afraid that it will not be ...
2
votes
2answers
63 views
php doubts. what happens if two people access the same script at the same time?
i've made a php search engine a while ago and now i have this doubt that i already searched for it and saw a lot of questions here on stack overflow talking about multiple simultaneous accesses to php ...
2
votes
2answers
69 views
When f(n) = n^.1 and g(n) = log(n)^10, does f(n) = Ω(g)?
I was told that "any exponential trumps any logarithm".
But when the exponential is between zero and one, doesn't the execution time of the logarithm grow much faster? So by that logic it would be f ...
2
votes
2answers
162 views
High Execution time on java methods
I am running a java server on a CentOS 5.4 VPS.
VPS stats:
- 2.5GHz single core CPU
- 2GB of RAM
- OpenJDK 1.6 (tried Sun JDK 1.7 also)
I have been experiencing very high CPU usages from the java ...
2
votes
1answer
138 views
Is it bad to change max_execution_time in PHP to something like 5 mins in order to make long poll (comet) push requests?
I am trying to make a semi-realtime notification system sort of like on Facebook and for that I am looking forward to using long polling instead of mindless polling (polling every N seconds).
Yes, I ...
2
votes
1answer
322 views
Rails Integration Tests: reducing execution time
I want to share my finding and hear from others about successful and failed attepts to reduce execution time of integration tests of Rails applications (be it 'ordinary' tests, Cucumber- or ...
2
votes
5answers
412 views
PHPUnit print tests execution time
is there a way to print the execution time of each test with PHPUnit?
2
votes
3answers
388 views
How to estimate method execution time?
I have requirement to cancel method execution if it takes the more than two seconds to complete and restart it on another thread.
So, is there any way/call back mechanism/HACK, I can make method ...
2
votes
3answers
341 views
Get and store execution time in Oracle
Is there a way to get and store the execution time of a select?
select * from table1
Thank you,
Radu.
2
votes
3answers
420 views
Does the gcc -g debugging flag affect program execution?
I've just been testing a program I'm working, and I see that it's executing 3μs faster (a statistically significant change) when I compile it with -g. This makes no sense to me - I thought that the -g ...
2
votes
1answer
99 views
In PHP does max_execution_time affect shutdown functions that are run through a register_shutdown_function() call?
I have a shutdown function registered using register_shutdown_function() that takes a long time to complete. Will PHP's max_execution_time cause PHP to terminate this function or will it run until it ...
2
votes
2answers
272 views
How to exit a process run with Ruby if it takes more than 5 seconds?
I'm implementing a checking system in Ruby. It runs executables with different tests. If the solution is not correct, it can take forever for it to finish with certain hard tests. That's why I want to ...
2
votes
2answers
1k views
How to get the execution time of a MySQL query from PHP?
I execute MySQL queries from PHP and would like to know how time consuming they are. Is there any way to get the execution time of a MySQL query from PHP?
I also wonder if the execution time depends ...
2
votes
1answer
631 views
mysql query execution time - can i get this in milliseconds?
I'm comparing a few different approaches to getting some data in mysql, directly at the console, using the SQL_NO_CACHE option to make sure mysql keeps running the full query every time. Mysql gives ...
2
votes
4answers
309 views
Timing program execution
I have a project written in C and I would like to know if there is a simple way to profile its execution time and memory usage under Windows.
Thanks in advance.
2
votes
2answers
346 views
execution time of a stored procedure
What is the age old method of testing execution time of stored procedures on informix 11.5. I am thinking of doing something like this from a unix prompt:
$ time (echo 'execute procedure foo(1)' | ...
1
vote
2answers
49 views
Which would have the greatest processor cost?
I have a class, as such:
private class verifierListener implements SerialPortEventListener {
String outBuffer;
char charBuffer;
public void serialEvent(SerialPortEvent event) {
...
1
vote
2answers
47 views
Overriding php.ini on server
I have a page which allows users to upload images.
It is returning a 500 error when the user tries to upload larger images though.
The following code...
<?php echo ...
1
vote
3answers
180 views
Get execution time of sql script in oracle sqlplus
I have a script that i use to load my data into my tables in Oracle (by a list of insert statements). How can i get the execution time of the entire loading process? I have tried with set timing on, ...
1
vote
4answers
191 views
using nanosleep() in c
could someone tell explain to me the use of tim.tv_sec and tim.tv_nsec in the following. What are those values. I would like to sleep execution for half a second, which is 500,000 microsecs. Could you ...
1
vote
1answer
152 views
get execution time in milliseconds in R
I have read a solution to this using tic(), toc() functions
tic <- function(gcFirst = TRUE, type=c("elapsed", "user.self", "sys.self"))
{
type <- match.arg(type)
assign(".type", type, ...
1
vote
0answers
30 views
Timing execution time in .net and disregard OS hibernation time
We are trying to incorporate some timing of code in our application and have run into a potential problem. We would like the timing to be robust so that the periods where the computer is hibernating, ...
1
vote
2answers
106 views
What is the largest size n of a problem that can be solved in one second, assuming the problem takes f(n) microseconds?
I have this question:
f(n) = log(n) (it's log base 2 btw)
What is the largest size n of a problem that can be solved in one second, assuming the problem takes f(n) microseconds?
Well since f(n) is ...
1
vote
1answer
48 views
Job execution time of PBS script (serial job)
I'm trying to figure out the execution time of a serial job that was done using Portable Batch System (PBS). Is that information in the output file (task.o*), under Ressources in the Epilogue section? ...
1
vote
1answer
183 views
Measure execution time of Java with JVMTI
For the profiler which I implement using JVMTI I would like to start measuring the execution time of all Java methods. The JVMTI offers the events:
MethodEntry
MethodExit
So this would be quite ...
1
vote
8answers
270 views
Is there a command in java to measure the execution time?
Is there a command in java to measure the execution time ?
Something like
System.out.println(execution.time);
in the end of the code.