The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.
DES Multithreaded Trajectory Dataset (AutoThread Dataset)
This dataset targets research on accelerating Discrete Event Simulation (DES) systems for Simulation-in-the-Loop Reinforcement Learning (SiL-RL). It records multithreaded execution traces of DES environments under varying application workloads, hardware platforms, and worker-thread (WT) counts, supporting research in thread-level behavior analysis, performance modeling, and adaptive thread tuning.
Companion paper: Hybrid-Adaptive Thread Tuning to Mitigate Simulation Execution Bottlenecks in High-Performance Reinforcement Learning Inference (AutoThread, IJCAI/ECAI 2026 submission).
To the best of our knowledge, this is the first public DES multithreaded trajectory dataset for RL-based decision-making systems, and one of the largest single-node thread-level trace sets currently available, comprising over 10,000 multithreaded execution samples.
1. Overview
The dataset is organized along four dimensions β application Γ hardware platform Γ workload parameters Γ worker-thread count β and contains two categories of data:
| Top-level directory | Purpose |
|---|---|
PCS/ |
Full static thread-count sweeps of the PCS (Personal Communication System) application across platforms and workloads |
UAV/ |
Full static thread-count sweeps of the UAV (autonomous navigation and obstacle avoidance) application across platforms, scenarios, and workloads |
Dynamic/ |
Comparative experiment traces produced by various thread-tuning methods (Static / XGBoost / Reinforcer / Otter / PINN / dPINN, etc.) under dynamic workloads |
Both application cases are built on the DES paradigm:
- PCS: A classic DES benchmark simulating multi-class communication tasks among nodes in a wireless network. Each agent represents a communication node generating five types of communication tasks, with task execution times following a Poisson distribution of mean t.
- UAV: A case study based on real flight trajectories from FlightAware, simulating multi-UAV autonomous navigation and obstacle avoidance. Each agent represents a UAV and performs perception and navigation tasks; each UAV deterministically generates 2 tasks per cycle.
To emulate high-fidelity simulation, each task embeds array dot products and iterative power-function computations, yielding per-task execution times distributed between 10 ΞΌs and 800 ΞΌs.
2. Hardware Platforms
Traces were collected on two mainstream server-grade CPU platforms:
- AMD EPYC 9734 (224 logical cores)
- Intel Xeon Gold 6338
The operating system is Linux (kernel 6.8.0-78-generic, Ubuntu-based). Original pidstat timestamps and system identifiers are preserved in the trace files so that the sampling context can be reconstructed.
3. Directory Structure
3.1 Static-sweep data: PCS/ and UAV/
PCS/
βββ AMD EPYC 9734/
β βββ load_log/
β βββ complex_500/
β β βββ lp_400_tm_2000/
β β β βββ perf_out_{K}.txt # K = 1..60, the WT count
β β β βββ pidstat_out_{K}.txt
β β β βββ simulation_out_{K}.txt
β β βββ lp_900_tm_2000/
β β βββ lp_1600_tm_2000/
β β βββ lp_2500_tm_2000/
β β βββ lp_3600_tm_2000/
β βββ complex_1000/
β βββ complex_1500/
β βββ complex_2000/
β βββ complex_3000/
β βββ complex_4000/
βββ Intel Xeon Gold 6338/
βββ load_log/
βββ complex_0/ ... complex_8000/
UAV/
βββ AMD EPYC 9734/
β βββ load_log/
β βββ nohot_data_0/
β β βββ scenario2/
β β β βββ perf_out_{K}.txt # K = 1..70
β β β βββ pidstat_out_{K}.txt
β β β βββ simulation_out_{K}.txt
β β βββ scenario3/
β β βββ scenario4/
β β βββ scenario5/
β β βββ scenario6/
β βββ nohot_data_1000/ ... nohot_data_8000/
βββ Intel Xeon Gold 6338/
βββ load_log/...
Naming conventions (PCS):
complex_Xβ computational-complexity level of a single task (embedded compute size); largerXproduces longer per-task execution times.lp_Y_tm_ZβYis the number of agents (Logical Processes, LP);Zis the number of simulation steps (total simulation duration).{kind}_out_K.txtβKis the worker-thread count configured for that run;kind β {perf, pidstat, simulation}.
Naming conventions (UAV):
nohot_data_Xβ embedded-computation scale parameter (X = 0means no extra compute load; largerXmeans heavier per-task work).scenarioYβ different navigation scenarios partitioned from real flight data (varying UAV count and trajectory distribution).{kind}_out_K.txtβ same as above;Kis the WT count.
Within each leaf directory,
Kranges from 1 up to the maximum WT count tested on that platform (typically 1β60 for PCS, 1β70 for UAV), corresponding to one full thread-count sweep.
3.2 Dynamic-tuning comparison data: Dynamic/
Dynamic/
βββ AMD_PCS/ # AMD EPYC 9734 + PCS
βββ AMD_Airline/ # AMD EPYC 9734 + UAV (trajectories from Airline data)
βββ X86_PCS/ # Intel Xeon Gold 6338 + PCS
βββ X86_Airline/ # Intel Xeon Gold 6338 + UAV
βββ round_{1..5}/
βββ Static_{X} / static_complex_{X}/ # fixed-thread baselines
βββ Xgboost_{X} / Xgbcpu_complex_{X}/ # XGBoost-based thread predictor
βββ reinfor_complex_{X}/ # Reinforcer (RL) tuner
βββ Otter_{X}/ # Otter baseline
βββ PINN_complex_{X}/ # PINO predictor only (no online fine-tuning)
βββ dPINN_complex_{X}/ # AutoThread (PINO + dynamic online fine-tuning)
βββ ADA_complex_{X}/ ADAPINN_complex_{X}/ # adaptive ablation variants
βββ Robustness/ # dedicated robustness experiments
round_Nβ independent repeated trials, used to assess stability and variance.- The prefix of each subdirectory denotes the thread-tuning method; the
_Xsuffix usually corresponds to a workload-intensity level (e.g., 500 / 1000 / 1500 / 2000). Robustness/β robustness tests under abnormal workloads or noise perturbations.- The contents of each leaf directory follow the same three-file convention:
perf_out_*.txt,pidstat_out_*.txt,simulation_out_*.txt.
4. File Contents and Field Definitions
Each experiment sample consists of three trace files:
4.1 Hardware-layer traces
CPU utilization is a classic and widely used performance indicator, so we record kernel time and waiting time per thread. Memory subsystem, cache, I/O rate, and context switching also directly impact job performance and are therefore included.
pidstat_out_K.txtβ Per-thread runtime trace collected bypidstat(CPU, memory, I/O, context switching, etc.), with one row per worker-thread child of the main process. For pidstat field semantics see https://www.man7.org/linux/man-pages/man1/pidstat.1.html.perf_out_K.txtβ Microarchitectural metrics collected byperf(cache references / cache misses, including LLC load / store miss ratios), characterizing memory-subsystem behavior.
4.2 Application-layer traces
Following the conservative-synchronization PDES execution model, event processing and entity synchronization are the dominant time consumers; we therefore record per-event time, per-cycle thread-pool execution time, and per-cycle synchronization time.
simulation_out_K.txtβ DES engine log, containing:- Startup information: configuration / scenario parsing, entity initialization, Pub/Sub interaction registration (
Interaction event_vector:*). - Per-simulation-step summary:
simulation time=β¦, wall time=β¦ ms, excute time=β¦ vs, synchronize time=β¦ vs, executed events=β¦. - Per-event execution time:
event{ID} excute time=β¦ vs. - Task-queue length per cycle of the thread pool:
εζΆδΊδ»Άδ»»ε‘ιεε€§ε°:β¦(concurrent task-queue size).
- Startup information: configuration / scenario parsing, entity initialization, Pub/Sub interaction registration (
Selected samples were also profiled with Intel VTune to analyze hotspot functions and thread time consumption (used to localize lock waiting and busy-waiting overhead). When provided, VTune outputs are stored as standalone reports.
4.3 Field-definition reference
| Metric | Description | Metric | Description |
|---|---|---|---|
Time |
Real-world (wall-clock) timestamp | kB_ccwr/s |
Cancelled write KB per second (pidstat) |
UID |
User ID | iodelay |
I/O delay clock ticks |
TGID |
Thread-group ID (main process) | cswch/s |
Voluntary context switches per second |
TID |
Thread ID | nvcswch/s |
Non-voluntary context switches per second |
%usr |
User-space CPU usage | Command |
Process / thread command name |
%system |
Kernel-space CPU usage | LLC-load-misses |
Last-level-cache load misses |
%guest |
Virtual-CPU usage | LLC-store-misses |
Last-level-cache store misses |
%wait |
Time waiting in run queue | interaction event_vector |
Pub/Sub interaction ID |
%CPU |
Total CPU usage | simulation time |
Simulation clock (step index) |
CPU |
Physical core currently used | wall time |
Cumulative wall-clock time (ms) |
minflt/s |
Minor page faults per second | executed events |
Cumulative number of executed events |
majflt/s |
Major page faults per second | entityID |
Entity ID |
VSZ |
Virtual memory size (KB) | threads |
Worker-thread count |
RSS |
Resident set size (KB) | event excute time |
Single-event execution time |
%MEM |
Physical memory usage (%) | task queue |
Task-queue length |
kB_rd/s |
Disk read KB per second | synchronize time |
Entity synchronization time |
kB_wr/s |
Disk write KB per second | excute time |
Thread-pool execution time per simulation step |
A total of 34 feature variables, covering hardware resource utilization, application logs, and microarchitectural features.
5. Dataset Scale
- A full thread-count sweep (single platform Γ single application) produces 3 Γ K_max files (K_max = 60 or 70).
PCS: 2 platforms Γ 6β10complex_XΓ 5lp_*_tm_*Γ ~60 thread counts.UAV: 2 platforms Γ 9nohot_data_XΓ 5scenarioYΓ ~70 thread counts.Dynamic: 4 platform Γ application combinations Γ multiple rounds (round_1..5) Γ multiple tuning methods Γ multiple workload levels.- Total: >10,000 multithreaded execution samples.
6. Recommended Usage
- Static performance modeling. Use traces in
PCS/andUAV/to fit "thread count vs. speedup" curves and regress task service rate ΞΌ_e and scheduler service rate ΞΌ_b. - Multithreaded behavior analysis. Combine
%usr / %system / %CPU / cswch/sfrompidstat_out_*.txtwith cache metrics fromperf_out_*.txtto study busy waiting, lock contention, and microarchitectural bottlenecks (see the Empirical Study section of the paper). - Thread-tuning-algorithm benchmarking. Use
Dynamic/traces with matched round and workload to directly compare Static, XGBoost, Reinforcer, Otter, PINN, and AutoThread (dPINN). - Robustness evaluation. Use
Dynamic/*/Robustness/to evaluate tuner stability under abnormal workloads and disturbances.
Parsing tips
- Lines beginning with
simulation time=Kinsimulation_out_*.txtcan be regex-extracted in one pass into 5-tuples (step, wall_time, exec_time, sync_time, cumulative_events) forming a time series. pidstat_out_*.txtconsists of multiple sampling blocks separated by# Time β¦header lines, each block being one sampling interval; we recommend splitting on the header and parsing into a long-format DataFrame keyed byTID.perf_out_*.txthas a fixed schema (time / counts / unit / events) and can be grouped bycache-references/cache-missesto reconstruct time series.
7. Citation
If this dataset or the accompanying method assists your work, please cite:
8. License and Disclaimer
This dataset is intended for academic research only. The traces were collected on shared multi-user Linux servers and may contain unpredictable runtime noise and external disturbances; such noise itself is a valuable signal for studying the robustness of adaptive thread-tuning methods.
- Downloads last month
- 8