Tagged Questions
12
votes
3answers
9k views
Getting “global name 'foo' is not defined” with Python's timeit
I'm trying to find out how much time it takes to execute a Python statement, so I looked online and found that the standard library provides a module called timeit that purports to do exactly that:
...
9
votes
5answers
3k views
accurately measure time python function takes
I need to measure the time certain parts of my program take (not for debugging but as a feature in the output). Accuracy is important because the total time will be a fraction of a second.
I was ...
6
votes
4answers
2k views
timeit versus timing decorator
I'm trying to time some code. First I used a timing decorator:
#!/usr/bin/env python
import time
from itertools import izip
from random import shuffle
def timing_val(func):
def ...
4
votes
2answers
158 views
What does timeit gain by turning off garbage collection?
I was reading the code for the timeit module and I noticed this segment:
gcold = gc.isenabled()
gc.disable()
timing = self.inner(it, self.timer)
if gcold:
gc.enable()
This just stores the state ...
3
votes
3answers
138 views
Inconsistency between %time and %timeit in IPython
I am confronted to a weird situation that I can't explain. Here is my test timing the generation of a large list of tuples:
In [1]: def get_list_of_tuples():
...: return [(i,) for i in ...
3
votes
1answer
110 views
python: bytecode-oriented profiler
I'm writing a web application (http://www.checkio.org/) which allows users to write python code. As one feedback metric among many, I'd like to enable profiling while running checks on this code. This ...
3
votes
5answers
2k views
python: slow timeit() function
When I run the code below outside of timeit(), it appears to complete instantaneously. However when I run it within the timeit() function, it takes much longer. Why?
>>> import timeit
...
3
votes
2answers
3k views
Tricky Python string literals in passing parameter to timeit.Timer() function
I'm having a hard time with the setup statement in Python's timeit.Timer(stmt, setup_stmt). I appreciate any help to get me out of this tricky problem:
So my sniplet looks like this:
def ...
2
votes
3answers
133 views
Are variables in python functions reinitialized with each function call?
Assume I have two functions
def myfunction1(number):
biglist = [1,2,3,4,5,6,7,8,9]
print number*biglist
biglist = [1,2,3,4,5,6,7,8,9]
def myfunction2(number, biglist):
print ...
2
votes
1answer
237 views
Proper way to import when using timeit?
I was testing the following code from one of my previous questions (turning a list into a dictionary):
single = ['key1', 'value1', 'key2', 'value2', 'key3', 'value3']
if __name__ == '__main__':
...
2
votes
2answers
665 views
Python - Timeit within a class
I'm having some real trouble with timing a function from within an instance of a class. I'm not sure I'm going about it the right way (never used timeIt before) and I tried a few variations of the ...
1
vote
2answers
69 views
Why does Python's timeit() execute endlessly?
When trying to use the Python built-in module 'timeit' as follows:
timeit.Timer('print "hi"').timeit()
it prints more than one line; why is that? It keeps printing "hi" endlessly:
hi
hi
hi
hi
...
...
1
vote
3answers
95 views
Python Timeit and “global name … is not defined”
I have a problem with timit function for code optimization. For example, I writing functions with parameters in a file, let's call it myfunctions.py containing :
def func1(X):
Y = X+1
return ...
1
vote
3answers
127 views
measure time passed in Python?
What I want is to start counting time somewhere in my code and then get the passed time, to measure the time it took to execute few function. I think I'm using the timeit module wrong, but the docs ...
1
vote
3answers
95 views
Question about timeit module in python
I have a question about the timeit module in python, which is used to determine the time it takes for a piece of code to execute.
t = timeit.Timer("foo","from __main__ import foo")
...
1
vote
2answers
225 views
How to use a callable as the setup with timeit.Timer?
I want to time some code that depends on some setup. The setup code looks a little like this:
>>> b = range(1, 1001)
And the code I want to time looks vaguely like this:
>>> ...
1
vote
5answers
344 views
Measure time of a function with arguments in Python
I am trying to measure the time of raw_queries(...), unsuccessfully so far. I found that I should use the timeit module. The problem is that I can't (= I don't know how) pass the arguments to the ...
1
vote
2answers
121 views
Can't use a data obj with timeit.Time module in python
I'm trying to measure how long it takes read then encrypt some data (independently). But I can't seem to access the a pre-created data obj within timeit (as it runs in its own virtual environment)
...
0
votes
2answers
74 views
Timeit Python. How does it work?
I want to time a function and I'd like to use the timeit library. I can't find any good example on the net. I have to time the function "largest_eigenvector" which is in the maxcut library, this ...
0
votes
2answers
432 views
Python timeit problem
I'm trying to use the timeit module but I don't know how.
I have a main:
from Foo import Foo
if __name__ == '__main__':
...
foo = Foo(arg1, arg2)
t = Timer("foo.runAlgorithm()")
print ...
0
votes
2answers
203 views
Why does “python -mtimeit” show less time when the code contains some module imports?
On my single core 1.4 GHz computer, I ran the following 2 timeit codes:
suzan:~$ python -mtimeit "
def count(n):
while n > 0:
n -= 1
count(10000000)
"
10 loops, best of 3: 1.73 sec per ...
0
votes
1answer
159 views
NameError for using timeit in python
I got NameError when I try to run this codes."global name j is not defined". How can I fix it?
def test(j):
for i in range(j):
j = i**2
if __name__=='__main__':
from timeit import ...
0
votes
2answers
71 views
timeit module hangs with bigger values of pow()
I am trying to calculate the time taken by pow function to calculate exponential modulo. With the values of g,x,p hardcoded the code gives error and with the values placed in the pow function, the ...
0
votes
2answers
667 views
Python: Time a code segment for testing performance (with timeit)
I've a python script which works just as it should but I need to write the time for the execution. I've gooled that I should use timeit but I can't seem to get it to work.
My Python script looks like ...
0
votes
2answers
135 views
Managing Setup code with TimeIt
As part of a pet project of mine, I need to test the performance of various different implementations of my code in Python. I anticipate this to be something I do alot of, and I want to try to make ...