CloudAI benchmark suite aims to develop an industry standard benchmark focused on grading Data Center (DC) scale AI systems in the Cloud.
First, clone the CloudAI repository to your local machine:
git clone [email protected]:NVIDIA/cloudai.git
cd cloudaiCreate a virtual environment:
python -m venv venv
source venv/bin/activateNext, install the required packages using pip:
pip install -r requirements.txtAfter setting up the environment and installing dependencies, install the cloudai package itself:
pip install .Cloud AI supports five modes: install, dry-run, run, generate-report, and uninstall.
- Use the install mode to install all test templates in the specified installation path.
- Use the dry-run mode to simulate running experiments without actually executing them. This is useful for verifying configurations and testing experiment setups.
- Use the run mode to run experiments.
- Use the generate-report mode to generate reports under the test directories alongside the raw data.
- Use the uninstall mode to remove installed test templates.
To install test templates, run Cloud AI CLI in install mode. Please make sure to use the correct system configuration file that corresponds to your current setup for installation and experiments.
cloudai\
--mode install\
--system_config_path conf/v0.6/general/system/example_slurm_cluster.tomlTo simulate running experiments without execution, use the dry-run mode:
cloudai\
--mode dry-run\
--system_config_path conf/v0.6/general/system/example_slurm_cluster.toml\
--test_scenario_path conf/v0.6/general/test_scenario/sleep/test_scenario.tomlTo run experiments, execute Cloud AI CLI in run mode:
cloudai\
--mode run\
--system_config_path conf/v0.6/general/system/example_slurm_cluster.toml\
--test_scenario_path conf/v0.6/general/test_scenario/sleep/test_scenario.tomlTo generate reports, execute Cloud AI CLI in generate-report mode:
cloudai\
--mode generate-report\
--system_config_path conf/v0.6/general/system/example_slurm_cluster.toml\
--output_path /path/to/output_directoryIn the generate-report mode, use the --output_path argument to specify a subdirectory under the result directory. This subdirectory is usually named with a timestamp for unique identification.
To uninstall test templates, run Cloud AI CLI in uninstall mode:
cloudai\
--mode uninstall\
--system_config_path conf/v0.6/general/system/example_slurm_cluster.tomlFeel free to contribute to the CloudAI project. Your contributions are highly appreciated.
This project is licensed under Apache 2.0. See the LICENSE file for detailed information.