Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.62 KB

README.md

File metadata and controls

46 lines (31 loc) · 1.62 KB

Profiling & Optimisation (Python)

Introduction

This lesson introduces the basics of profiling and optimising Python code. The course is designed to be accessible to Python users of all skill levels (beyond total beginner). The optimisations presented should be considered performance best practices, they are demonstrated with small programming patterns that demonstrate multiple approaches in code to achieve the same result with differing performance.

Contact Us

This course was originally authored by and is currently maintained by @Robadob, it is a fork of the University of Sheffield branded course. Both repositories are maintained, so issues will be monitored .

Contributing

See Contributing

Acknowledgements

The initial development of this course was funded by the University of Sheffield, to support training initiatives for users of their Stanage HPC cluster.

Building the Site Locally

If you are making complex changes, and wish to build the site locally the below instructions can be followed.

Setup

Both of these steps should be followed within rterm.

# Setup mirrors
options(repos = c(
  carpentries = "https://carpentries.r-universe.dev/", 
  CRAN = "https://cran.rstudio.com/"
))
# Setup install from github
install.packages("devtools")
library(devtools)
# Install Uni of Shef Varnish theme
install_github("RSE-Sheffield/uos-varnish")
# Install remaining official carpentries packages
install.packages(c("sandpaper", "tinkr", "pegboard"))

Development Server

sandpaper::serve()