Datasets:
v2.0 Release: Added C++ Source, Compact Configs, and Improved Schedule Schema
#2
by
Mascinissa
- opened
Summary
This update introduces LOOPerSet v2, expanding program metadata and simplifying schedule representation, while also adding compact dataset files for faster loading.
Key changes
Added raw generator code to each program
- New top-level field:
Tiramisu_cppcontaining the raw Tiramisu C++ generator source before any transformations. - Added a companion archive:
data/source/looperset_v2_generators.tar.gzwith ~220k generator files named<program_name>_generator.cpp.
Redesigned schedule annotation schema
- Each schedule entry now follows a unified structure:
transformations_list(list of dict transformation steps)schedule_str(new unified, pipe-separated schedule string)legacy_schedule_str(legacy string preserved for backward reference)ISL_AST,Halide_IR,Tiramisu_transform_commandsexecution_timesunchanged in meaning (raw timings list)
Added “Compact” variants for speed / convenience
- New configs/files:
full_compactandpact25_split_compact. - Compact files remove the following fields:
Tiramisu_cpp,ISL_AST,Halide_IR,Tiramisu_transform_commands,exploration_trace.
Repo structure + README updated
- New filenames include the
v2prefix (e.g.,data/full/looperset_v2_full.jsonl.gz). - Updated dataset card to document new configs, schedule format, and source archive.
Backward compatibility
- This is a schema-breaking release (v1 parsers will not work without updates).
legacy_schedule_stris kept to help map v1 schedule to v2.
Mascinissa
changed pull request status to
open
Mascinissa
changed pull request status to
merged