build_tools/python/e2e_test_framework/models/README.md
IREE E2E Test Artifacts Models
This directory contains the definitions of source models for e2e tests (including the benchmark suites). Each source type of models is defined in <source_type>_models.py
Adding a new model
- Upload the source model file to the GCS bucket gs://iree-model-artifacts.
- You can ask IREE team members for help if you don't have access.
- Register a unique model ID in build_tools/python/e2e_test_framework/unique_ids.py.
- Run
uuid.uuid4()
, or uuidgen
on Linux, to generate a new uuid for the new model. The ID is a totally arbitrary artificial key to distinguish different models.
- Define a new model with GCS URL and model ID in
<source_type>_models.py
. - Optionally add the model to a model group in build_tools/python/e2e_test_framework/models/model_groups.py.