Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
NumPy Cookbook

You're reading from  NumPy Cookbook

Product type Book
Published in Oct 2012
Publisher Packt
ISBN-13 9781849518925
Pages 226 pages
Edition 1st Edition
Languages

Table of Contents (17) Chapters

NumPy Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Winding Along with IPython Advanced Indexing and Array Concepts Get to Grips with Commonly Used Functions Connecting NumPy with the Rest of the World Audio and Image Processing Special Arrays and Universal Functions Profiling and Debugging Quality Assurance Speed Up Code with Cython Fun with Scikits Index

Profiling with IPython


In IPython, we can profile small snippets of code using timeit. We can also profile a larger script. We will show both approaches.

How to do it...

First, we will time a small snippet.

  1. Timing a snippet.

    Start IPython in pylab mode:

    ipython -pylab

    Create an array containing 1000 integer values between 0 and 1000:

    In [1]: a = arange(1000)

    Measure the time taken for searching "the answer to everything"—42, in the array. Yes, the answer to everything is 42. If you don't believe me please read http://en.wikipedia.org/wiki/42_%28number%29.

    In [2]: %timeit searchsorted(a, 42)
    100000 loops, best of 3: 7.58 us per loop
  2. Profile a script.

    We will profile this small script that inverts a matrix of varying size containing random values. The .I attribute (that's uppercase I) of a NumPy array represents the inverse of a matrix:

    import numpy
    
    def invert(n):
      a = numpy.matrix(numpy.random.rand(n, n))
      return a.I
    
    sizes = 2 ** numpy.arange(0, 12)
    
    for n in sizes:
      invert(n)

    We can time this as...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}