python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to reduce execution time of exe file
I created an exe file with pyinstaller for my python script, and it performs 10 times slower, than python scrip.
I tried onedir and onefile options, but still the performance is too slow.
I need to ru...
NairB
Votes: 0
Answers: 0
Incorrect timing in release mode
I'm trying to measure time of execution of the following code:
#include <iostream>
#include <cmath>
#include <stdio.h>
#include <chrono>
uint64_t LCG(uint64_t LCG_state)
{
...
Tom
Votes: 0
Answers: 1
limit number of threads used by a child process launched with ``multiprocessing.Process`
I'm trying to launch a function (my_function) and stop its execution after a certain time is reached.
So i challenged multiprocessing library and everything works well. Here is the code, where my_func...
Youcef
Votes: 0
Answers: 1
Measure Java execution time (Real, User, System) like linux command
I have a massive parallel Java-Application and want to measure its execution time the very same way that linux' time command does it (Real, User, System).
I'm especially interested in the time the app...
stfn
Votes: 0
Answers: 0