Dataset Viewer
Auto-converted to Parquet Duplicate
optimization_config
stringlengths
18
20
iteration_time_ms
float64
16.1k
241k
dp1-tp1-pp2-cp4-RC
105,179.4
dp1-tp1-pp2-cp4-noRC
67,474.9
dp1-tp1-pp4-cp2-RC
59,723.2
dp1-tp1-pp4-cp2-noRC
36,224
dp1-tp2-pp2-cp2-RC
138,598.2
dp1-tp2-pp2-cp2-noRC
73,418.3
dp1-tp2-pp4-cp1-RC
42,993
dp1-tp2-pp4-cp1-noRC
29,102.8
dp1-tp4-pp1-cp2-RC
241,427.2
dp1-tp4-pp1-cp2-noRC
145,115
dp1-tp4-pp2-cp1-RC
76,205.7
dp1-tp4-pp2-cp1-noRC
48,484.5
dp1-tp8-pp1-cp1-RC
153,814.5
dp1-tp8-pp1-cp1-noRC
96,177.4
dp2-tp1-pp2-cp2-RC
50,420.2
dp2-tp1-pp2-cp2-noRC
33,496.6
dp2-tp1-pp4-cp1-RC
22,308.4
dp2-tp1-pp4-cp1-noRC
18,306.6
dp2-tp2-pp1-cp2-RC
127,432.5
dp2-tp2-pp1-cp2-noRC
76,567.5
dp2-tp2-pp2-cp1-RC
38,604.7
dp2-tp2-pp2-cp1-noRC
29,406.9
dp2-tp4-pp1-cp1-RC
83,018.8
dp2-tp4-pp1-cp1-noRC
48,438.1
dp4-tp1-pp2-cp1-RC
20,716.5
dp4-tp1-pp2-cp1-noRC
16,127.1
dp4-tp2-pp1-cp1-RC
38,320.8
dp4-tp2-pp1-cp1-noRC
24,285.3

LM-SimBench (Example Snapshot)

Dataset Description

This repository distributes a compact example snapshot of LM-SimBench, the structured CSV release of large-scale LLM training-performance profiling data. The snapshot is provided so reviewers and readers can inspect file layout, schemas, and representative records without downloading the multi–tens-of-gigabyte full release.

The profiling methodology, software stack, and field definitions are the same as in the complete LM-SimBench dataset:

Full release: anonymous-neurips26-ljasd/LM-SimBench

Organized CSV fields correspond to the dataset card of that repository. The original raw traces are indexed from the companion raw-data repository linked there (see Reference(s) on the full dataset card).

This snapshot is intended for research inspection and format verification. It is not a downsized substitute for experiments that require full corpus coverage or model diversity. For modeling and benchmarking at scale, use the full LM-SimBench release above.

The snapshot is released under the same license as the full dataset (see License/Terms of Use).

Relationship to the Full LM-SimBench Release

Aspect This repository (LM-SimBench_example) Full release (LM-SimBench)
Scope Single model directory (qwen3_8b_4k), fixed subset of feasible parallel configurations Multiple model families and contexts; full feasible-configuration coverage per model
Repository-level data_manifest.csv Not included (not required for a path-preview snapshot) Included for corpus-wide indexing
CSV schemas (overlapping files) Same column semantics as documented on the full dataset card Canonical documentation

Contents of This Snapshot

Model directory: qwen3_8b_4k

Model-level CSV files (same roles as in the full release where names overlap):

  • step_time_summary.csv — configuration-level iteration time.
  • feasible_configs_sorted.csv — feasible configurations sorted by iteration_time_ms within this model directory.
  • peak_memory.csv — rank-level peak allocated memory.
  • operator_latency_by_category.csv — operator latency by category and type.

Additional model-level CSV files in this snapshot (derived from the same preprocessing pipeline; useful for debugging and fine-grained analysis; not listed on the main LM-SimBench dataset card):

  • step_trace_time_summary.csv — rank-level breakdown of iteration time into coarse phases (e.g., compute, communication, overlap-related fields as emitted by the profiler pipeline).
  • comm_summary.csv — rank- and configuration-level aggregated communication statistics (sums/means of elapsed and wait-related quantities, link-type aggregates, and related summaries), summarizing content related to per-event comm_time.csv files below.

Per-configuration layout (unchanged from the full release):

qwen3_8b_4k/
  step_time_summary.csv
  feasible_configs_sorted.csv
  peak_memory.csv
  operator_latency_by_category.csv
  comm_summary.csv
  step_trace_time_summary.csv
  <parallel_config>/
    rank_<id>/
      comm_time.csv
      matrix_operator_latency.csv

Parallel configurations included: this snapshot contains 26 configuration directories under qwen3_8b_4k, following the naming convention dp<dp>-tp<tp>-pp<pp>-cp<cp>-<RC|noRC> documented on the full dataset card.

Approximate total size: on the order of 2 GB (exact byte size depends on Hugging Face packaging).

Dataset Fields (Overlapping Files)

Field definitions for step_time_summary.csv, feasible_configs_sorted.csv, peak_memory.csv, operator_latency_by_category.csv, comm_time.csv, and matrix_operator_latency.csv are identical to those in the full LM-SimBench dataset card:

https://huggingface.co/datasets/anonymous-neurips26-ljasd/LM-SimBench

Readers should consult that card for authoritative column-level documentation.

step_trace_time_summary.csv (this snapshot only)

Rank-level summary of iteration-time attribution (microseconds in the released files), including columns such as computing, communication-related buckets, pipeline stage and bubble-related fields, and other profiler-phase labels as produced by the extraction tooling. Exact column names appear in the file header.

comm_summary.csv (this snapshot only)

Rank-level aggregates of communication behavior per configuration, including elapsed-time summaries, wait- and synchronization-related aggregates where present, per-link-type transit summaries, and matrix-level communication summaries where applicable. Exact column names appear in the file header.

Intended Usage

  • Verify CSV schemas and directory layout before retrieving the full LM-SimBench release.
  • Lightweight reproduction of loading and parsing code in restricted download environments.
  • Teaching and onboarding for the profiling data format.

For substantial empirical studies, use the full LM-SimBench dataset linked above.

License/Terms of Use

This snapshot is governed by the Creative Commons Attribution 4.0 International License (CC BY 4.0), consistent with the full LM-SimBench release.

Users may share and adapt the data subject to attribution and license compatibility requirements stated on the full dataset card.

Limitations

  • Subset only: statistics and model coverage do not match the full corpus.
  • Environment specificity: measurements reflect the stack and hardware configuration described on the full dataset card.
  • Profiler artifacts: data may include measurement overhead and runtime variability as in the full release.
  • Extra CSV files (step_trace_time_summary.csv, comm_summary.csv) are ancillary to the main card documentation; downstream tools should not assume their presence in every third-party mirror of LM-SimBench unless explicitly stated.

Dataset Characterization

Data collection method: Automated profiler collection from distributed LLM training runs (same pipeline as the full release).

Labeling method: Automated extraction from training logs and profiler records.

Ethical Considerations

As with LM-SimBench, this snapshot contains performance profiling metrics, not natural-language conversations, personal identifiers, or user-generated text. Downstream use must comply with the dataset license, hosting platform terms, and applicable policies.

Downloads last month
12