Skip to Content
Mastering Numerical Computing with NumPy
book

Mastering Numerical Computing with NumPy

by Umit Mert Cakmak, Tiago Antao, Mert Cuhadaroglu
June 2018
Intermediate to advanced
248 pages
5h 27m
English
Packt Publishing
Content preview from Mastering Numerical Computing with NumPy

Profiling NumPy code to understand the performance

There are couple of helpful libraries to monitor performance metrics of a given python script. You have already seen the usage of cProfile library. This section will introduce vprof which is visual profiler library.

It will provide you runtime statistics and memory utilization of a given python program.

1D clustering function from Chapter 5, Clustering Clients of Wholesale Distributor Using NumPy, will be used here and following code snippet should be saved to a file named to_be_profiled.py:

import numpy as npX = np.array([1,2,3,2,1,3,9,8,11,12,10,11,14,25,26,24,30,22,24,27])n_clusters = 3def Kmeans_1D(X, n_clusters, random_seed=442):  # Randomly choose random indexes as cluster centers rng ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Numerical Computing with Python

Numerical Computing with Python

Pratap Dangeti, Allen Yu, Claire Chung, Aldrin Yim
Scientific Computing with Python - Second Edition

Scientific Computing with Python - Second Edition

Claus Führer, Claus Fuhrer, Jan Erik Solem, Olivier Verdier
SciPy and NumPy

SciPy and NumPy

Eli Bressert

Publisher Resources

ISBN: 9781788993357Supplemental Content