- R High Performance Programming
- Aloysius Lim William Tjhi
- 188字
- 2021-08-06 19:17:07
Chapter 2. Profiling – Measuring Code's Performance
The first step to improve the performance of R programs is to identify where the performance bottlenecks are occurring. To do this, we profile or measure the performance of an R program as it runs with respect to various measures such as execution time, memory utilization, CPU utilization, and disk I/O. This gives us a good idea of how the program and its parts perform, so that we can tackle the biggest bottlenecks first. This chapter will show you how to use a few simple tools to measure the performance of R programs.
The 80/20 rule is applied here. 80 percent of the possible performance improvements can usually be achieved by tackling 20 percent of the largest performance problems. We will look at how to determine which problems to solve first in order to get maximum improvement in the least amount of time and effort.
This chapter covers the following topics:
- Measuring the total execution time
- Profiling the execution time
- Profiling the memory utilization
- Monitoring memory utilization, CPU utilization, and disk I/O using OS tools
- Identifying and resolving bottlenecks
- Node.js Design Patterns
- Drupal 8 Blueprints
- DevOps Automation Cookbook
- iOS應用逆向工程(第2版)
- Hands-On Swift 5 Microservices Development
- Learning Apache Mahout Classification
- Unity Game Development Scripting
- 組態軟件技術與應用
- Flutter跨平臺開發入門與實戰
- Learning OpenStack Networking(Neutron)(Second Edition)
- Go語言開發實戰(慕課版)
- Scala編程(第5版)
- JavaScript Concurrency
- 零基礎學編程系列(全5冊)
- 計算機程序的構造和解釋(JavaScript版)