Package to retrieve Goodput of jobs running on Cloud TPU.
Project description
ML Goodput Measurement
Overview
ML Goodput Measurement is a library intended to be used with Cloud TPU to log the necessary information and query a job's Goodput. It can be pip installed to import its modules, and retrieve information about a training job's overall productive Goodput. The package exposes API interfaces to log useful information from the user application and query Goodput for the job run, gain insight into the productivity of ML workloads and utilization of compute resources.
Components
The ML Goodput Measurement library consists of two main components:
the GoodputRecorder
and the GoodputCalculator
. The GoodputRecorder
exposes APIs to the client to export key timestamps while a training job makes
progress, namely APIs that allow logging of productive step time and total job
run time. The library will serialize and store this data in Google Cloud
Logging. The GoodputCalculator
exposes APIs to compute Goodput based on the
recorded data. Cloud Logging handles its internal operations asynchronously.
The recommended way to compute Goodput is to run an analysis program separate
from the training application, either on a CPU instance or on the users'
development machine.
Installation
To install the ML Goodput Measurement package, run the following command on TPU VM:
pip install ml-goodput-measurement
Usage
The usage of this package requires the setup of a Google Cloud project with billing enabled to properly use Google Cloud Logging. If you don't have a Google Cloud project, or if you don't have billing enabled for your Google Cloud project, then do the following:
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project. Instructions can be found here
To run your training on Cloud TPU, set up the Cloud TPU environment by following instructions here.
To learn more about Google Cloud Logging, visit this page.
Import
To use this package, import the goodput
module:
from ml_goodput_measurement import goodput
Define the name of the Google Cloud Logging logger bucket
Create a run-specific logger bucket where Cloud Logging entries can be written and read from.
For example:
goodput_logger_name = f'goodput_{config.run_name}'
Create a GoodputRecorder
object
Next, create a recorder object with the following parameters:
job_name
: The full run name of the job.logger_name
: The name of the Cloud Logging logger object (created in the previous step).logging_enabled
: Whether or not this process has Cloud Logging enabled.
NOTE: For a multi-worker setup, please ensure that only one worker writes the logs to avoid the duplication. In JAX, for example, the check could be
if jax.process_index() == 0
NOTE:
logging_enabled
defaults toFalse
and Goodput computations cannot be completed if no logs are ever written.
For example:
goodput_recorder = goodput.GoodputRecorder(job_name=config.run_name, logger_name=goodput_logger_name, logging_enabled=(jax.process_index() == 0))
Record Data with GoodputRecorder
Record Job Start and End Time
Use the recorder object to record the job's overall start and end time.
For example:
def main(argv: Sequence[str]) -> None:
# Initialize configs…
goodput_recorder.record_job_start_time(datetime.datetime.now())
# TPU Initialization and device scanning…
# Set up other things for the main training loop…
# Main training loop
train_loop(config)
goodput_recorder.record_job_end_time(datetime.datetime.now())
Record Step Time
Use the recorder object to record a step's start time using record_step_start_time(step_count)
:
For example:
def train_loop(config, state=None):
# Set up mesh, model, state, checkpoint manager…
# Initialize functional train arguments and model parameters…
# Define the compilation
for step in np.arange(start_step, config.steps):
goodput_recorder.record_step_start_time(step)
# Training step…
return state
Retrieve Goodput with GoodputCalculator
In order to retrieve the Goodput of a job run, all you need to do is instantiate
a GoodputCalculator
object with the job's run name and the Cloud Logging
logger name used to record data for that job run. Then call the get_job_goodput
API to get the computed Goodput for the job run.
It is recommended to make the get_job_goodput
calls for a job run from an
instance that runs elsewhere from your training machine.
Create a GoodputCalculator
object
Create the calculator object:
goodput_logger_name = f'goodput_{config.run_name}' # You can choose your own logger name.
goodput_calculator = goodput.GoodputCalculator(job_name=config.run_name, logger_name=goodput_logger_name)
Retrieve Goodput
Finally, call the get_job_goodput
API to retrieve Goodput for the entire job run.
total_goodput = goodput_calculator.get_job_goodput()
print(f"Total job goodput: {total_goodput:.2f}%")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ml_goodput_measurement-0.0.1.tar.gz
.
File metadata
- Download URL: ml_goodput_measurement-0.0.1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c329758807000e7623064b67c0ded7101d6ad6e33841a9c5f81927eed60ad40b |
|
MD5 | bd373879c298c7ce5ec5de361a6f5beb |
|
BLAKE2b-256 | 6d9b88d9fdbc60ee517a77c380a8eac7c8510994b52230b785bbd41343181ea0 |
File details
Details for the file ml_goodput_measurement-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: ml_goodput_measurement-0.0.1-py3-none-any.whl
- Upload date:
- Size: 9.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3e2ed02ac88cbaa1ade18ce886eff780d807ad791ebcd91e2cbc92094b6e273 |
|
MD5 | fd5d3510e44115bfd4a7b81996ad2107 |
|
BLAKE2b-256 | f498353bc7df34c1d06f8eceb816cfdde63ede71953c79f8a59da093408bd79e |